开发者

nested Navigation Frame in Silverlight

开发者 https://www.devze.com 2022-12-15 02:15 出处:网络
I created one master page with navigation frame. In a child page also containing one navigation frame once Chi开发者_运维知识库ld page loaded the outer next prev buttons are not working...instead of u

I created one master page with navigation frame. In a child page also containing one navigation frame once Chi开发者_运维知识库ld page loaded the outer next prev buttons are not working...


instead of using the hyperlinks, create a button with a click event. Then call

 this.subframe.Navigate(new Uri("/Views/AboutContent/AboutPage1.xaml", UriKind.Relative));

subframe is the name of your nested frame. That should do it

you may also have to set this property in your nested frame:

 JournalOwnership="OwnsJournal"
0

精彩评论

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