c# - Usercontrol is not working -


i'm create popup in wp8 usercontrol call popup on button click below code

private void button_click(object sender, routedeventargs e) {         mypopup.verticaloffset = 100;           if (mypopup.isopen != true)         {             mypopup.child = mycontrol;             mypopup.isopen = true;         }         else         {             mypopup.isopen = false;         }          mycontrol.settings.click += (s, args) =>             {                 mycontrol.settings.navigateuri = new uri("/selectjoketype.xaml", urikind.relativeorabsolute);             };        } 

but navigateuri not working it's not go selectjoketype.xaml page

what navigationservice.navigate? additional information here


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -