PageRenderTime 68ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/onomVS2008SP1/OneNoteXmlViewer/MainForm.Designer.cs

#
C# | 197 lines | 137 code | 7 blank | 53 comment | 3 complexity | 7312bdef057f5d740961d0c7e1ead80a MD5 | raw file
Possible License(s): AGPL-3.0
  1. namespace Microsoft.Office.OneNote.XmlViewer
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.menuStrip = new System.Windows.Forms.MenuStrip();
  30. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.statusStrip = new System.Windows.Forms.StatusStrip();
  35. this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
  36. this.splitContainer = new System.Windows.Forms.SplitContainer();
  37. this.delay = new System.Windows.Forms.Timer(this.components);
  38. this.hierarchyTree = new Microsoft.Office.OneNote.XmlViewer.Controls.HierarchyTreeView();
  39. this.contentViewer1 = new Microsoft.Office.OneNote.XmlViewer.Controls.ContentViewer();
  40. this.menuStrip.SuspendLayout();
  41. this.statusStrip.SuspendLayout();
  42. this.splitContainer.Panel1.SuspendLayout();
  43. this.splitContainer.Panel2.SuspendLayout();
  44. this.splitContainer.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // menuStrip
  48. //
  49. this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  50. this.fileToolStripMenuItem,
  51. this.helpToolStripMenuItem});
  52. this.menuStrip.Location = new System.Drawing.Point(0, 0);
  53. this.menuStrip.Name = "menuStrip";
  54. this.menuStrip.Size = new System.Drawing.Size(944, 28);
  55. this.menuStrip.TabIndex = 0;
  56. this.menuStrip.Text = "menuStrip1";
  57. //
  58. // fileToolStripMenuItem
  59. //
  60. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  61. this.exitToolStripMenuItem});
  62. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  63. this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
  64. this.fileToolStripMenuItem.Text = "&File";
  65. //
  66. // exitToolStripMenuItem
  67. //
  68. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  69. this.exitToolStripMenuItem.Size = new System.Drawing.Size(102, 24);
  70. this.exitToolStripMenuItem.Text = "E&xit";
  71. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  72. //
  73. // helpToolStripMenuItem
  74. //
  75. this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  76. this.aboutToolStripMenuItem});
  77. this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
  78. this.helpToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
  79. this.helpToolStripMenuItem.Text = "&Help";
  80. //
  81. // aboutToolStripMenuItem
  82. //
  83. this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
  84. this.aboutToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
  85. this.aboutToolStripMenuItem.ShowShortcutKeys = false;
  86. this.aboutToolStripMenuItem.Size = new System.Drawing.Size(323, 24);
  87. this.aboutToolStripMenuItem.Text = "About Microsoft OneNote XML Viewer";
  88. this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
  89. //
  90. // statusStrip
  91. //
  92. this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  93. this.statusLabel});
  94. this.statusStrip.Location = new System.Drawing.Point(0, 520);
  95. this.statusStrip.Name = "statusStrip";
  96. this.statusStrip.Size = new System.Drawing.Size(944, 25);
  97. this.statusStrip.TabIndex = 1;
  98. this.statusStrip.Text = "statusStrip1";
  99. //
  100. // statusLabel
  101. //
  102. this.statusLabel.Name = "statusLabel";
  103. this.statusLabel.Size = new System.Drawing.Size(929, 20);
  104. this.statusLabel.Spring = true;
  105. this.statusLabel.Text = "Retrieving hierarchy from OneNote...";
  106. this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  107. //
  108. // splitContainer
  109. //
  110. this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  111. this.splitContainer.Location = new System.Drawing.Point(0, 28);
  112. this.splitContainer.Name = "splitContainer";
  113. //
  114. // splitContainer.Panel1
  115. //
  116. this.splitContainer.Panel1.Controls.Add(this.hierarchyTree);
  117. //
  118. // splitContainer.Panel2
  119. //
  120. this.splitContainer.Panel2.Controls.Add(this.contentViewer1);
  121. this.splitContainer.Size = new System.Drawing.Size(944, 492);
  122. this.splitContainer.SplitterDistance = 321;
  123. this.splitContainer.TabIndex = 2;
  124. //
  125. // delay
  126. //
  127. this.delay.Interval = 250;
  128. this.delay.Tick += new System.EventHandler(this.delay_Tick);
  129. //
  130. // hierarchyTree
  131. //
  132. this.hierarchyTree.BorderStyle = System.Windows.Forms.BorderStyle.None;
  133. this.hierarchyTree.Dock = System.Windows.Forms.DockStyle.Fill;
  134. this.hierarchyTree.FullRowSelect = true;
  135. this.hierarchyTree.HideSelection = false;
  136. this.hierarchyTree.Location = new System.Drawing.Point(0, 0);
  137. this.hierarchyTree.Name = "hierarchyTree";
  138. this.hierarchyTree.ShowLines = false;
  139. this.hierarchyTree.ShowPlusMinus = false;
  140. this.hierarchyTree.ShowRootLines = false;
  141. this.hierarchyTree.Size = new System.Drawing.Size(321, 492);
  142. this.hierarchyTree.TabIndex = 0;
  143. this.hierarchyTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnSelectedNodeChanged);
  144. this.hierarchyTree.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnSelectedNodeChanging);
  145. //
  146. // contentViewer1
  147. //
  148. this.contentViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
  149. this.contentViewer1.Location = new System.Drawing.Point(0, 0);
  150. this.contentViewer1.Name = "contentViewer1";
  151. this.contentViewer1.Size = new System.Drawing.Size(619, 492);
  152. this.contentViewer1.TabIndex = 0;
  153. //
  154. // MainForm
  155. //
  156. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  157. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  158. this.ClientSize = new System.Drawing.Size(944, 545);
  159. this.Controls.Add(this.splitContainer);
  160. this.Controls.Add(this.statusStrip);
  161. this.Controls.Add(this.menuStrip);
  162. this.Cursor = System.Windows.Forms.Cursors.Default;
  163. this.DoubleBuffered = true;
  164. this.MainMenuStrip = this.menuStrip;
  165. this.Name = "MainForm";
  166. this.Text = "Microsoft OneNote XML Viewer";
  167. this.menuStrip.ResumeLayout(false);
  168. this.menuStrip.PerformLayout();
  169. this.statusStrip.ResumeLayout(false);
  170. this.statusStrip.PerformLayout();
  171. this.splitContainer.Panel1.ResumeLayout(false);
  172. this.splitContainer.Panel2.ResumeLayout(false);
  173. this.splitContainer.ResumeLayout(false);
  174. this.ResumeLayout(false);
  175. this.PerformLayout();
  176. }
  177. #endregion
  178. private System.Windows.Forms.MenuStrip menuStrip;
  179. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  180. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  181. private System.Windows.Forms.StatusStrip statusStrip;
  182. private System.Windows.Forms.SplitContainer splitContainer;
  183. private Microsoft.Office.OneNote.XmlViewer.Controls.HierarchyTreeView hierarchyTree;
  184. private System.Windows.Forms.Timer delay;
  185. private System.Windows.Forms.ToolStripStatusLabel statusLabel;
  186. private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
  187. private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
  188. private Microsoft.Office.OneNote.XmlViewer.Controls.ContentViewer contentViewer1;
  189. }
  190. }