Azmyth.Editor.frmEditorMain.frmEditorMain C# (CSharp) Метод

frmEditorMain() публичный Метод

public frmEditorMain ( ) : System
Результат System
        public frmEditorMain()
        {
            Theme.ColorTable = new RibbonProfesionalRendererColorTableBlack();

            InitializeComponent();

            _root = tvwWorld.Nodes.Add("Assets");

            int splitterPosition = this.gridProperties.GetInternalLabelWidth();
            this.gridProperties.MoveSplitterTo(splitterPosition + 200);

            pnlTop.Height = Properties.Settings.Default.TopPanelHeight;
            pnlLeft.Width = Properties.Settings.Default.LeftPanelWidth;
            pnlRight.Width = Properties.Settings.Default.RightPanelWidth;
            pnlBottom.Height = Properties.Settings.Default.BottomPanelHeight;

            ShowPanel(PanelPosition.Top, Properties.Settings.Default.TopPanelVisible);
            ShowPanel(PanelPosition.Bottom, Properties.Settings.Default.BottomPanelVisible);
            ShowPanel(PanelPosition.Left, Properties.Settings.Default.LeftPanelVisible);
            ShowPanel(PanelPosition.Right, Properties.Settings.Default.RightPanelVisible);

            Output("&B&+wInitializing...&N");
        }