MainForm2.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:14k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Reflection;
  6. using System.Windows.Forms;
  7. using System.IO;
  8. using WeifenLuo.WinFormsUI.Docking;
  9. using DockSample.Customization;
  10. namespace DockSample
  11. {
  12.     public partial class MainForm2 : Form
  13.     {
  14.         private bool m_bSaveLayout = true;
  15. private DeserializeDockContent m_deserializeDockContent;
  16. private DummySolutionExplorer m_solutionExplorer = new DummySolutionExplorer();
  17. private DummyPropertyWindow m_propertyWindow = new DummyPropertyWindow();
  18. private DummyToolbox m_toolbox = new DummyToolbox();
  19. private DummyOutputWindow m_outputWindow = new DummyOutputWindow();
  20. private DummyTaskList m_taskList = new DummyTaskList();
  21.         public MainForm2()
  22.         {
  23.             InitializeComponent();
  24.             showRightToLeft.Checked = (RightToLeft == RightToLeft.Yes);
  25.             RightToLeftLayout = showRightToLeft.Checked;
  26.             m_solutionExplorer = new DummySolutionExplorer();
  27.             m_solutionExplorer.RightToLeftLayout = RightToLeftLayout;
  28. m_deserializeDockContent = new DeserializeDockContent(GetContentFromPersistString);
  29.         }
  30. private void menuItemExit_Click(object sender, System.EventArgs e)
  31. {
  32. Close();
  33. }
  34. private void menuItemSolutionExplorer_Click(object sender, System.EventArgs e)
  35. {
  36. m_solutionExplorer.Show(dockPanel);
  37. }
  38. private void menuItemPropertyWindow_Click(object sender, System.EventArgs e)
  39. {
  40. m_propertyWindow.Show(dockPanel);
  41. }
  42. private void menuItemToolbox_Click(object sender, System.EventArgs e)
  43. {
  44. m_toolbox.Show(dockPanel);
  45. }
  46. private void menuItemOutputWindow_Click(object sender, System.EventArgs e)
  47. {
  48. m_outputWindow.Show(dockPanel);
  49. }
  50. private void menuItemTaskList_Click(object sender, System.EventArgs e)
  51. {
  52. m_taskList.Show(dockPanel);
  53. }
  54. private void menuItemAbout_Click(object sender, System.EventArgs e)
  55. {
  56. AboutDialog aboutDialog = new AboutDialog();
  57. aboutDialog.ShowDialog(this);
  58. }
  59. private IDockContent FindDocument(string text)
  60. {
  61. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  62. {
  63. foreach (Form form in MdiChildren)
  64. if (form.Text == text)
  65. return form as IDockContent;
  66. return null;
  67. }
  68. else
  69. {
  70. foreach (IDockContent content in dockPanel.Documents)
  71. if (content.DockHandler.TabText == text)
  72. return content;
  73. return null;
  74. }
  75. }
  76. private void menuItemNew_Click(object sender, System.EventArgs e)
  77. {
  78. DummyDoc dummyDoc = CreateNewDocument();
  79. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  80. {
  81. dummyDoc.MdiParent = this;
  82. dummyDoc.Show();
  83. }
  84. else
  85. dummyDoc.Show(dockPanel);
  86. }
  87. private DummyDoc CreateNewDocument()
  88. {
  89. DummyDoc dummyDoc = new DummyDoc();
  90. int count = 1;
  91. //string text = "C:\MADFDKAJ\ADAKFJASD\ADFKDSAKFJASD\ASDFKASDFJASDF\ASDFIJADSFJ\ASDFKDFDA" + count.ToString();
  92.             string text = "Document" + count.ToString();
  93.             while (FindDocument(text) != null)
  94. {
  95. count ++;
  96.                 //text = "C:\MADFDKAJ\ADAKFJASD\ADFKDSAKFJASD\ASDFKASDFJASDF\ASDFIJADSFJ\ASDFKDFDA" + count.ToString();
  97.                 text = "Document" + count.ToString();
  98.             }
  99. dummyDoc.Text = text;
  100. return dummyDoc;
  101. }
  102. private DummyDoc CreateNewDocument(string text)
  103. {
  104. DummyDoc dummyDoc = new DummyDoc();
  105. dummyDoc.Text = text;
  106. return dummyDoc;
  107. }
  108. private void menuItemOpen_Click(object sender, System.EventArgs e)
  109. {
  110. OpenFileDialog openFile = new OpenFileDialog();
  111. openFile.InitialDirectory = Application.ExecutablePath;
  112. openFile.Filter = "rtf files (*.rtf)|*.rtf|txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
  113. openFile.FilterIndex = 1;
  114. openFile.RestoreDirectory = true ;
  115. if(openFile.ShowDialog() == DialogResult.OK)
  116. {
  117. string fullName = openFile.FileName;
  118. string fileName = Path.GetFileName(fullName);
  119. if (FindDocument(fileName) != null)
  120. {
  121. MessageBox.Show("The document: " + fileName + " has already opened!");
  122. return;
  123. }
  124. DummyDoc dummyDoc = new DummyDoc();
  125. dummyDoc.Text = fileName;
  126. dummyDoc.Show(dockPanel);
  127. try
  128. {
  129. dummyDoc.FileName = fullName;
  130. }
  131. catch (Exception exception)
  132. {
  133. dummyDoc.Close();
  134. MessageBox.Show(exception.Message);
  135. }
  136. }
  137. }
  138. private void menuItemFile_Popup(object sender, System.EventArgs e)
  139. {
  140. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  141. {
  142. menuItemClose.Enabled = menuItemCloseAll.Enabled = (ActiveMdiChild != null);
  143. }
  144. else
  145. {
  146. menuItemClose.Enabled = (dockPanel.ActiveDocument != null);
  147. menuItemCloseAll.Enabled = (dockPanel.DocumentsCount > 0);
  148. }
  149. }
  150. private void menuItemClose_Click(object sender, System.EventArgs e)
  151. {
  152. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  153. ActiveMdiChild.Close();
  154. else if (dockPanel.ActiveDocument != null)
  155. dockPanel.ActiveDocument.DockHandler.Close();
  156. }
  157. private void menuItemCloseAll_Click(object sender, System.EventArgs e)
  158. {
  159. CloseAllDocuments();
  160. }
  161. private void CloseAllDocuments()
  162. {
  163. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  164. {
  165. foreach (Form form in MdiChildren)
  166. form.Close();
  167. }
  168. else
  169. {
  170.                 IDockContent[] documents = dockPanel.DocumentsToArray();
  171.                 foreach (IDockContent content in documents)
  172.                     content.DockHandler.Close();
  173. }
  174. }
  175. private IDockContent GetContentFromPersistString(string persistString)
  176. {
  177. if (persistString == typeof(DummySolutionExplorer).ToString())
  178. return m_solutionExplorer;
  179. else if (persistString == typeof(DummyPropertyWindow).ToString())
  180. return m_propertyWindow;
  181. else if (persistString == typeof(DummyToolbox).ToString())
  182. return m_toolbox;
  183. else if (persistString == typeof(DummyOutputWindow).ToString())
  184. return m_outputWindow;
  185. else if (persistString == typeof(DummyTaskList).ToString())
  186. return m_taskList;
  187. else
  188. {
  189. string[] parsedStrings = persistString.Split(new char[] { ',' });
  190. if (parsedStrings.Length != 3)
  191. return null;
  192. if (parsedStrings[0] != typeof(DummyDoc).ToString())
  193. return null;
  194. DummyDoc dummyDoc = new DummyDoc();
  195. if (parsedStrings[1] != string.Empty)
  196. dummyDoc.FileName = parsedStrings[1];
  197. if (parsedStrings[2] != string.Empty)
  198. dummyDoc.Text = parsedStrings[2];
  199. return dummyDoc;
  200. }
  201. }
  202. private void MainForm_Load(object sender, System.EventArgs e)
  203. {
  204. string configFile = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "DockPanel.config");
  205. if (File.Exists(configFile))
  206. dockPanel.LoadFromXml(configFile, m_deserializeDockContent);
  207. }
  208. private void MainForm_Closing(object sender, System.ComponentModel.CancelEventArgs e)
  209. {
  210. string configFile = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "DockPanel.config");
  211.             if (m_bSaveLayout)
  212.                 dockPanel.SaveAsXml(configFile);
  213.             else if (File.Exists(configFile))
  214.                 File.Delete(configFile);
  215. }
  216. private void menuItemToolBar_Click(object sender, System.EventArgs e)
  217. {
  218. toolBar.Visible = menuItemToolBar.Checked = !menuItemToolBar.Checked;
  219. }
  220. private void menuItemStatusBar_Click(object sender, System.EventArgs e)
  221. {
  222. statusBar.Visible = menuItemStatusBar.Checked = !menuItemStatusBar.Checked;
  223. }
  224.         private void toolBar_ButtonClick(object sender, System.Windows.Forms.ToolStripItemClickedEventArgs e)
  225.         {
  226.             if (e.ClickedItem == toolBarButtonNew)
  227.                 menuItemNew_Click(null, null);
  228.             else if (e.ClickedItem == toolBarButtonOpen)
  229.                 menuItemOpen_Click(null, null);
  230.             else if (e.ClickedItem == toolBarButtonSolutionExplorer)
  231.                 menuItemSolutionExplorer_Click(null, null);
  232.             else if (e.ClickedItem == toolBarButtonPropertyWindow)
  233.                 menuItemPropertyWindow_Click(null, null);
  234.             else if (e.ClickedItem == toolBarButtonToolbox)
  235.                 menuItemToolbox_Click(null, null);
  236.             else if (e.ClickedItem == toolBarButtonOutputWindow)
  237.                 menuItemOutputWindow_Click(null, null);
  238.             else if (e.ClickedItem == toolBarButtonTaskList)
  239.                 menuItemTaskList_Click(null, null);
  240.             else if (e.ClickedItem == toolBarButtonLayoutByCode)
  241.                 menuItemLayoutByCode_Click(null, null);
  242.             else if (e.ClickedItem == toolBarButtonLayoutByXml)
  243.                 menuItemLayoutByXml_Click(null, null);
  244.         }
  245. private void menuItemNewWindow_Click(object sender, System.EventArgs e)
  246. {
  247. MainForm newWindow = new MainForm();
  248. newWindow.Text = newWindow.Text + " - New";
  249. newWindow.Show();
  250. }
  251. private void menuItemTools_Popup(object sender, System.EventArgs e)
  252. {
  253. menuItemLockLayout.Checked = !this.dockPanel.AllowEndUserDocking;
  254. }
  255. private void menuItemLockLayout_Click(object sender, System.EventArgs e)
  256. {
  257. dockPanel.AllowEndUserDocking = !dockPanel.AllowEndUserDocking;
  258. }
  259. private void menuItemLayoutByCode_Click(object sender, System.EventArgs e)
  260. {
  261. dockPanel.SuspendLayout(true);
  262. m_solutionExplorer.Show(dockPanel, DockState.DockRight);
  263. m_propertyWindow.Show(m_solutionExplorer.Pane, m_solutionExplorer);
  264. m_toolbox.Show(dockPanel, new Rectangle(98, 133, 200, 383));
  265. m_outputWindow.Show(m_solutionExplorer.Pane, DockAlignment.Bottom, 0.35);
  266. m_taskList.Show(m_toolbox.Pane, DockAlignment.Left, 0.4);
  267. CloseAllDocuments();
  268. DummyDoc doc1 = CreateNewDocument("Document1");
  269. DummyDoc doc2 = CreateNewDocument("Document2");
  270. DummyDoc doc3 = CreateNewDocument("Document3");
  271. DummyDoc doc4 = CreateNewDocument("Document4");
  272. doc1.Show(dockPanel, DockState.Document);
  273. doc2.Show(doc1.Pane, null);
  274. doc3.Show(doc1.Pane, DockAlignment.Bottom, 0.5);
  275. doc4.Show(doc3.Pane, DockAlignment.Right, 0.5);
  276. dockPanel.ResumeLayout(true, true);
  277. }
  278. private void menuItemLayoutByXml_Click(object sender, System.EventArgs e)
  279. {
  280. dockPanel.SuspendLayout(true);
  281. // In order to load layout from XML, we need to close all the DockContents
  282. CloseAllContents();
  283. Assembly assembly = Assembly.GetAssembly(typeof(MainForm));
  284. Stream xmlStream = assembly.GetManifestResourceStream("DockSample.Resources.DockPanel.xml");
  285. dockPanel.LoadFromXml(xmlStream, m_deserializeDockContent);
  286. xmlStream.Close();
  287. dockPanel.ResumeLayout(true, true);
  288. }
  289. private void CloseAllContents()
  290. {
  291. // we don't want to create another instance of tool window, set DockPanel to null
  292. m_solutionExplorer.DockPanel = null;
  293. m_propertyWindow.DockPanel = null;
  294. m_toolbox.DockPanel = null;
  295. m_outputWindow.DockPanel = null;
  296. m_taskList.DockPanel = null;
  297. // Close all other document windows
  298. CloseAllDocuments();
  299. }
  300. private void SetSchema(object sender, System.EventArgs e)
  301. {
  302. CloseAllContents();
  303. if (sender == menuItemSchemaVS2005)
  304. Extender.SetSchema(dockPanel, Extender.Schema.VS2005);
  305. else if (sender == menuItemSchemaVS2003)
  306. Extender.SetSchema(dockPanel, Extender.Schema.VS2003);
  307.             menuItemSchemaVS2005.Checked = (sender == menuItemSchemaVS2005);
  308.             menuItemSchemaVS2003.Checked = (sender == menuItemSchemaVS2003);
  309. }
  310. private void SetDocumentStyle(object sender, System.EventArgs e)
  311. {
  312. DocumentStyle oldStyle = dockPanel.DocumentStyle;
  313. DocumentStyle newStyle;
  314. if (sender == menuItemDockingMdi)
  315. newStyle = DocumentStyle.DockingMdi;
  316. else if (sender == menuItemDockingWindow)
  317. newStyle = DocumentStyle.DockingWindow;
  318. else if (sender == menuItemDockingSdi)
  319. newStyle = DocumentStyle.DockingSdi;
  320. else
  321. newStyle = DocumentStyle.SystemMdi;
  322. if (oldStyle == newStyle)
  323. return;
  324. if (oldStyle == DocumentStyle.SystemMdi || newStyle == DocumentStyle.SystemMdi)
  325. CloseAllDocuments();
  326. dockPanel.DocumentStyle = newStyle;
  327. menuItemDockingMdi.Checked = (newStyle == DocumentStyle.DockingMdi);
  328. menuItemDockingWindow.Checked = (newStyle == DocumentStyle.DockingWindow);
  329. menuItemDockingSdi.Checked = (newStyle == DocumentStyle.DockingSdi);
  330. menuItemSystemMdi.Checked = (newStyle == DocumentStyle.SystemMdi);
  331. menuItemLayoutByCode.Enabled = (newStyle != DocumentStyle.SystemMdi);
  332. menuItemLayoutByXml.Enabled = (newStyle != DocumentStyle.SystemMdi);
  333. toolBarButtonLayoutByCode.Enabled = (newStyle != DocumentStyle.SystemMdi);
  334. toolBarButtonLayoutByXml.Enabled = (newStyle != DocumentStyle.SystemMdi);
  335. }
  336. private void menuItemCloseAllButThisOne_Click(object sender, System.EventArgs e)
  337. {
  338. if (dockPanel.DocumentStyle == DocumentStyle.SystemMdi)
  339. {
  340. Form activeMdi = ActiveMdiChild;
  341. foreach (Form form in MdiChildren)
  342. {
  343. if (form != activeMdi)
  344. form.Close();
  345. }
  346. }
  347. else
  348. {
  349. foreach (IDockContent document in dockPanel.DocumentsToArray())
  350. {
  351. if (!document.DockHandler.IsActivated)
  352. document.DockHandler.Close();
  353. }
  354. }
  355. }
  356. private void menuItemShowDocumentIcon_Click(object sender, System.EventArgs e)
  357. {
  358. dockPanel.ShowDocumentIcon = menuItemShowDocumentIcon.Checked= !menuItemShowDocumentIcon.Checked;
  359. }
  360.         private void showRightToLeft_Click(object sender, EventArgs e)
  361.         {
  362.             CloseAllContents();
  363.             if (showRightToLeft.Checked)
  364.             {
  365.                 this.RightToLeft = RightToLeft.No;
  366.                 this.RightToLeftLayout = false;
  367.             }
  368.             else
  369.             {
  370.                 this.RightToLeft = RightToLeft.Yes;
  371.                 this.RightToLeftLayout = true;
  372.             }
  373.             m_solutionExplorer.RightToLeftLayout = this.RightToLeftLayout;
  374.             showRightToLeft.Checked = !showRightToLeft.Checked;
  375.         }
  376.         private void exitWithoutSavingLayout_Click(object sender, EventArgs e)
  377.         {
  378.             m_bSaveLayout = false;
  379.             Close();
  380.             m_bSaveLayout = true;
  381.         }
  382.     }
  383. }