public Form1() { InitializeComponent(); this.FormClosing += new FormClosingEventHandler(Form1_FormClosing); this.FormClosed += new FormClosedEventHandler(Form1_FormClosed); this.MdiChildActivate += new EventHandler(Form1_MdiChildActivate); m_solutionExplorer = new DummySolutionExplorer(solution); m_outputWindow.Show(dockPanel, DockState.DockBottom); m_solutionExplorer.Show(dockPanel, DockState.DockLeft); m_solutionExplorer.SelectedFile += new DummySolutionExplorer.SelectedFileEventHandler(m_solutionExplorer_SelectedFile); updatemru(); if (Properties.Settings.Default.WindowSize != null) { this.Size = Properties.Settings.Default.WindowSize; } if (Properties.Settings.Default.WindowLocation != null) { this.Location = Properties.Settings.Default.WindowLocation; } }
private void menuItemLayoutByCode_Click(object sender, System.EventArgs e) { dockPanel.SuspendLayout(true); CloseAllDocuments(); m_solutionExplorer = new DummySolutionExplorer(); m_propertyWindow = new DummyPropertyWindow(); m_toolbox = new DummyToolbox(); m_outputWindow = new DummyOutputWindow(); m_taskList = new DummyTaskList(); m_solutionExplorer.Show(dockPanel, DockState.DockRight); m_propertyWindow.Show(m_solutionExplorer.Pane, m_solutionExplorer); m_toolbox.Show(dockPanel, new Rectangle(98, 133, 200, 383)); m_outputWindow.Show(m_solutionExplorer.Pane, DockAlignment.Bottom, 0.35); m_taskList.Show(m_toolbox.Pane, DockAlignment.Left, 0.4); DummyDoc doc1 = CreateNewDocument("Document1"); DummyDoc doc2 = CreateNewDocument("Document2"); DummyDoc doc3 = CreateNewDocument("Document3"); DummyDoc doc4 = CreateNewDocument("Document4"); doc1.Show(dockPanel, DockState.Document); doc2.Show(doc1.Pane, null); doc3.Show(doc1.Pane, DockAlignment.Bottom, 0.5); doc4.Show(doc3.Pane, DockAlignment.Right, 0.5); dockPanel.ResumeLayout(true, true); }
private void CreateStandardControls() { m_solutionExplorer = new DummySolutionExplorer(); m_propertyWindow = new DummyPropertyWindow(); m_toolbox = new DummyToolbox(); m_outputWindow = new DummyOutputWindow(); m_taskList = new DummyTaskList(); }
public MainForm2() { InitializeComponent(); showRightToLeft.Checked = ( RightToLeft == RightToLeft.Yes ); RightToLeftLayout = showRightToLeft.Checked; m_solutionExplorer = new DummySolutionExplorer(); m_solutionExplorer.RightToLeftLayout = RightToLeftLayout; m_deserializeDockContent = new DeserializeDockContent( GetContentFromPersistString ); }
public MainForm() { InitializeComponent(); showRightToLeft.Checked = (RightToLeft == RightToLeft.Yes); RightToLeftLayout = showRightToLeft.Checked; m_solutionExplorer = new DummySolutionExplorer(); m_solutionExplorer.RightToLeftLayout = RightToLeftLayout; m_deserializeDockContent = new DeserializeDockContent(GetContentFromPersistString); }
private void toolStripButton_solutionexplorer_Click(object sender, EventArgs e) { if (m_solutionExplorer == null) { m_solutionExplorer = new DummySolutionExplorer(solution); m_solutionExplorer.Show(dockPanel, DockState.DockLeft); } else { m_solutionExplorer.Close(); m_solutionExplorer = null; } }
private void CreateStandardControls() { m_solutionExplorer = new DummySolutionExplorer(); m_propertyWindow = new DummyPropertyWindow(); m_toolbox = new DummyToolbox(); m_outputWindow = new DummyOutputWindow(); m_taskList = new DummyTaskList(); m_keyDataSet = new KeyDataSet_Tool(); m_logWindow = new LogWindow(); Instance.SASLogWindow = m_logWindow; }