Inheritance: System.Windows.Window
Ejemplo n.º 1
0
        public WindowBackend()
        {
            Window = new WpfWindow();
            Window.UseLayoutRounding = true;
            rootPanel  = CreateMainGrid();
            contentBox = new DockPanel();

            Window.Content = rootPanel;
            Grid.SetColumn(contentBox, 0);
            Grid.SetRow(contentBox, 1);
            rootPanel.Children.Add(contentBox);
        }
Ejemplo n.º 2
0
        public WindowBackend()
        {
            Window = new WpfWindow ();
            Window.UseLayoutRounding = true;
            rootPanel = CreateMainGrid ();
            contentBox = new DockPanel ();

            Window.Content = rootPanel;
            Grid.SetColumn (contentBox, 0);
            Grid.SetRow (contentBox, 1);
            rootPanel.Children.Add (contentBox);
        }