开发者

how to navigate on the button click

开发者 https://www.devze.com 2022-12-10 09:45 出处:网络
I am developing a SilverLight Project using SilverLight BusinessApplication T开发者_运维知识库emplate RIA services.I want to navigate from one xaml page to another xaml page on the click of a Button t

I am developing a SilverLight Project using SilverLight BusinessApplication T开发者_运维知识库emplate RIA services.I want to navigate from one xaml page to another xaml page on the click of a Button that is placed on the first Xaml Page. i don't want to use Hyperlink button.

Any Suggestions...


Duplicate here:

Put this inside the event handler of the button:

this.NavigationService.Navigate(new Uri("nextpage.xaml", UriKind.Relative));
0

精彩评论

暂无评论...
验证码 换一张
取 消