コード例 #1
0
ファイル: ViewFactory.cs プロジェクト: cessor/MTSS12
 public static FrameworkElement CreateCockpit(ViewHub hub)
 {
     var cockpitView = new View.Cockpit();
     var cockpitViewModel = new ViewModels.Cockpit.Cockpit { Dispatchable = cockpitView };
     cockpitViewModel.RegisterHub(hub);
     cockpitView.DataContext = cockpitViewModel;
     return cockpitView;
 }
コード例 #2
0
ファイル: ViewFactory.cs プロジェクト: maxbruecken/Usus.NET
        public static FrameworkElement CreateCockpit(ViewHub hub, IJumpToSource jumpToSource)
        {
            var cockpitView      = new View.Cockpit();
            var cockpitViewModel = new ViewModels.Cockpit.Cockpit {
                Dispatchable = cockpitView
            };

            cockpitViewModel.RegisterHub(hub);
            cockpitViewModel.SourceLocating = jumpToSource;
            cockpitView.DataContext         = cockpitViewModel;
            return(cockpitView);
        }