c# - Cancelling navigation on a browser back button doesnt affect the Uri - Silverlight -



c# - Cancelling navigation on a browser back button doesnt affect the Uri - Silverlight -

i cancelling navigation overriding method:

protected override void onnavigatingfrom(navigatingcanceleventargs e) { e.cancel = true; base.onnavigatingfrom(e); }

this works when using navigationservice.navigate(...)

but if user presses browser button, browser uri change, though page doesn't change.

how prevent uri changing on browser button?

c# silverlight silverlight-5.0

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

ubuntu - Bash Script to Check That Files Are Being Created -

Php operator `break` doesn't stop while -