3

Win8 App中如何实现DI和IoC?在windows窗体中,如果我需要一个带有依赖项的窗体,我传入构造函数(构造函数注入)但是使用Page你怎么办?如果我用这个构造函数构建一个页面(

HomePage myPage = new HomePage (MyService1 ms, MyService2 ms)) 

然后

Navigate (typeof (HomePage)) 

我怎样才能传递论点?

4

1 回答 1

0

您可以使用ContentofFrame而不是解决问题Source

myFrame.Content = new HomePage (MyService1 ms, MyService2 ms);
于 2012-11-28T15:36:41.403 回答