0

我有 2 个来自不同命名空间的同名“RootView”视图:“Foo”和“Bar”。我必须将什么作为视图名称传递给 RegionManage.RequestNavigate 方法?

this.regionManager.RequestNavigate("MainRegion", "RootView"); // <--- RootView from Foo or Bar?

与往常一样,MSDN 上对此一无所知:http: //msdn.microsoft.com/en-us/library/gg418956 (v=pandp.40).aspx

4

1 回答 1

0

答案是:全名

this.regionManager.RequestNavigate("MainRegion", typeof(Foo.RootView).FullName); // <--- RootView from Foo or Bar?

感谢您的关注。

于 2012-11-21T15:17:20.337 回答