public ContentFrame(UIElement content, IHaveNavigation navigation)
        {
            InitializeComponent();

            this.Content.Content = content;
            this.Navigation.Content = navigation;
        }
예제 #2
0
 public FrameWindow(UIElement control, IHaveNavigation navigation)
 {
     this.Content = new ContentFrame(control, navigation);
 }