예제 #1
0
        public MainPanel(uint documentRuntimeSerialNumber)
        {
            // Padding around the main container, child panels should use a padding of 0
            Padding = 6;

            // ViewModel associated with a specific RhinoDoc.RuntimeSerialNumber
            GanPlanRhinoPanelViewModel view = new GanPlanRhinoPanelViewModel(documentRuntimeSerialNumber);

            // Set this panel's DataContext, Page... panels will inherit this DeviceContext
            DataContext = view;

            // Bind this panel's content to the view model, the Next and Back buttons will set this property.
            this.Bind(c => c.Content, view, m => m.Content);
        }
예제 #2
0
 public EtoPanelGanPlan(GanPlanRhinoPanelViewModel dataContext)
 {
     DataContext = dataContext;
     InitializeComponent();
 }