FormHDevEngineTool.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. namespace HDevEngineTool
  2. {
  3. partial class FormHDevEngineTool
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormHDevEngineTool));
  29. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  30. this.tsbtRunTool = new System.Windows.Forms.ToolStripButton();
  31. this.tsbReadHdev = new System.Windows.Forms.ToolStripButton();
  32. this.tsbSaveHdev = new System.Windows.Forms.ToolStripButton();
  33. this.tsbReLoad = new System.Windows.Forms.ToolStripButton();
  34. this.statusStrip = new System.Windows.Forms.StatusStrip();
  35. this.lb_RunStatus = new System.Windows.Forms.ToolStripStatusLabel();
  36. this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
  37. this.lb_RunTime = new System.Windows.Forms.ToolStripStatusLabel();
  38. this.uiSplitContainer1 = new Sunny.UI.UISplitContainer();
  39. this.panelHImageWindow = new System.Windows.Forms.Panel();
  40. this.uiTabControl1 = new Sunny.UI.UITabControl();
  41. this.tabPage1 = new System.Windows.Forms.TabPage();
  42. this.txbCodeText = new Sunny.UI.UIRichTextBox();
  43. this.tabPage2 = new System.Windows.Forms.TabPage();
  44. this.toolStrip1.SuspendLayout();
  45. this.statusStrip.SuspendLayout();
  46. ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).BeginInit();
  47. this.uiSplitContainer1.Panel1.SuspendLayout();
  48. this.uiSplitContainer1.Panel2.SuspendLayout();
  49. this.uiSplitContainer1.SuspendLayout();
  50. this.uiTabControl1.SuspendLayout();
  51. this.tabPage1.SuspendLayout();
  52. this.SuspendLayout();
  53. //
  54. // toolStrip1
  55. //
  56. this.toolStrip1.ImageScalingSize = new System.Drawing.Size(25, 25);
  57. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  58. this.tsbtRunTool,
  59. this.tsbReadHdev,
  60. this.tsbSaveHdev,
  61. this.tsbReLoad});
  62. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  63. this.toolStrip1.Name = "toolStrip1";
  64. this.toolStrip1.Size = new System.Drawing.Size(1277, 32);
  65. this.toolStrip1.TabIndex = 5;
  66. this.toolStrip1.Text = "toolStrip1";
  67. //
  68. // tsbtRunTool
  69. //
  70. this.tsbtRunTool.Image = ((System.Drawing.Image)(resources.GetObject("tsbtRunTool.Image")));
  71. this.tsbtRunTool.ImageTransparentColor = System.Drawing.Color.Magenta;
  72. this.tsbtRunTool.Name = "tsbtRunTool";
  73. this.tsbtRunTool.Size = new System.Drawing.Size(85, 29);
  74. this.tsbtRunTool.Text = "运行工具";
  75. this.tsbtRunTool.Click += new System.EventHandler(this.tsbtRunTool_Click);
  76. //
  77. // tsbReadHdev
  78. //
  79. this.tsbReadHdev.Image = ((System.Drawing.Image)(resources.GetObject("tsbReadHdev.Image")));
  80. this.tsbReadHdev.ImageTransparentColor = System.Drawing.Color.Magenta;
  81. this.tsbReadHdev.Name = "tsbReadHdev";
  82. this.tsbReadHdev.Size = new System.Drawing.Size(85, 29);
  83. this.tsbReadHdev.Text = "代码读取";
  84. this.tsbReadHdev.Click += new System.EventHandler(this.tsbReadHdev_Click);
  85. //
  86. // tsbSaveHdev
  87. //
  88. this.tsbSaveHdev.Image = ((System.Drawing.Image)(resources.GetObject("tsbSaveHdev.Image")));
  89. this.tsbSaveHdev.ImageTransparentColor = System.Drawing.Color.Magenta;
  90. this.tsbSaveHdev.Name = "tsbSaveHdev";
  91. this.tsbSaveHdev.Size = new System.Drawing.Size(85, 29);
  92. this.tsbSaveHdev.Text = "程序保存";
  93. this.tsbSaveHdev.Click += new System.EventHandler(this.tsbSaveHdev_Click);
  94. //
  95. // tsbReLoad
  96. //
  97. this.tsbReLoad.Image = ((System.Drawing.Image)(resources.GetObject("tsbReLoad.Image")));
  98. this.tsbReLoad.ImageTransparentColor = System.Drawing.Color.Magenta;
  99. this.tsbReLoad.Name = "tsbReLoad";
  100. this.tsbReLoad.Size = new System.Drawing.Size(85, 29);
  101. this.tsbReLoad.Text = "重新载入";
  102. this.tsbReLoad.Click += new System.EventHandler(this.tsbReLoad_Click);
  103. //
  104. // statusStrip
  105. //
  106. this.statusStrip.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  107. this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  108. this.lb_RunStatus,
  109. this.toolStripStatusLabel1,
  110. this.lb_RunTime});
  111. this.statusStrip.Location = new System.Drawing.Point(0, 601);
  112. this.statusStrip.Name = "statusStrip";
  113. this.statusStrip.Size = new System.Drawing.Size(1277, 22);
  114. this.statusStrip.TabIndex = 4;
  115. //
  116. // lb_RunStatus
  117. //
  118. this.lb_RunStatus.Name = "lb_RunStatus";
  119. this.lb_RunStatus.Size = new System.Drawing.Size(0, 17);
  120. //
  121. // toolStripStatusLabel1
  122. //
  123. this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
  124. this.toolStripStatusLabel1.Size = new System.Drawing.Size(16, 17);
  125. this.toolStripStatusLabel1.Text = " ";
  126. //
  127. // lb_RunTime
  128. //
  129. this.lb_RunTime.Name = "lb_RunTime";
  130. this.lb_RunTime.Size = new System.Drawing.Size(0, 17);
  131. //
  132. // uiSplitContainer1
  133. //
  134. this.uiSplitContainer1.Cursor = System.Windows.Forms.Cursors.Default;
  135. this.uiSplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  136. this.uiSplitContainer1.Location = new System.Drawing.Point(0, 32);
  137. this.uiSplitContainer1.Name = "uiSplitContainer1";
  138. //
  139. // uiSplitContainer1.Panel1
  140. //
  141. this.uiSplitContainer1.Panel1.Controls.Add(this.panelHImageWindow);
  142. //
  143. // uiSplitContainer1.Panel2
  144. //
  145. this.uiSplitContainer1.Panel2.Controls.Add(this.uiTabControl1);
  146. this.uiSplitContainer1.Size = new System.Drawing.Size(1277, 569);
  147. this.uiSplitContainer1.SplitterDistance = 630;
  148. this.uiSplitContainer1.SplitterWidth = 11;
  149. this.uiSplitContainer1.TabIndex = 6;
  150. //
  151. // panelHImageWindow
  152. //
  153. this.panelHImageWindow.Dock = System.Windows.Forms.DockStyle.Fill;
  154. this.panelHImageWindow.Location = new System.Drawing.Point(0, 0);
  155. this.panelHImageWindow.Name = "panelHImageWindow";
  156. this.panelHImageWindow.Size = new System.Drawing.Size(630, 569);
  157. this.panelHImageWindow.TabIndex = 0;
  158. //
  159. // uiTabControl1
  160. //
  161. this.uiTabControl1.Controls.Add(this.tabPage1);
  162. this.uiTabControl1.Controls.Add(this.tabPage2);
  163. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  164. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  165. this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  166. this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 40);
  167. this.uiTabControl1.Location = new System.Drawing.Point(0, 0);
  168. this.uiTabControl1.MainPage = "";
  169. this.uiTabControl1.Name = "uiTabControl1";
  170. this.uiTabControl1.SelectedIndex = 0;
  171. this.uiTabControl1.Size = new System.Drawing.Size(636, 569);
  172. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  173. this.uiTabControl1.TabIndex = 0;
  174. //
  175. // tabPage1
  176. //
  177. this.tabPage1.Controls.Add(this.txbCodeText);
  178. this.tabPage1.Location = new System.Drawing.Point(0, 40);
  179. this.tabPage1.Name = "tabPage1";
  180. this.tabPage1.Size = new System.Drawing.Size(636, 529);
  181. this.tabPage1.TabIndex = 0;
  182. this.tabPage1.Text = "工具代码";
  183. this.tabPage1.UseVisualStyleBackColor = true;
  184. //
  185. // txbCodeText
  186. //
  187. this.txbCodeText.AutoWordSelection = true;
  188. this.txbCodeText.Dock = System.Windows.Forms.DockStyle.Fill;
  189. this.txbCodeText.FillColor = System.Drawing.Color.White;
  190. this.txbCodeText.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  191. this.txbCodeText.IsScaled = false;
  192. this.txbCodeText.Location = new System.Drawing.Point(0, 0);
  193. this.txbCodeText.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  194. this.txbCodeText.MinimumSize = new System.Drawing.Size(1, 1);
  195. this.txbCodeText.Name = "txbCodeText";
  196. this.txbCodeText.Padding = new System.Windows.Forms.Padding(2);
  197. this.txbCodeText.Size = new System.Drawing.Size(636, 529);
  198. this.txbCodeText.Style = Sunny.UI.UIStyle.Custom;
  199. this.txbCodeText.TabIndex = 0;
  200. this.txbCodeText.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  201. this.txbCodeText.WordWrap = true;
  202. //
  203. // tabPage2
  204. //
  205. this.tabPage2.Location = new System.Drawing.Point(0, 40);
  206. this.tabPage2.Name = "tabPage2";
  207. this.tabPage2.Size = new System.Drawing.Size(636, 529);
  208. this.tabPage2.TabIndex = 1;
  209. this.tabPage2.Text = "其他";
  210. this.tabPage2.UseVisualStyleBackColor = true;
  211. //
  212. // FormHDevEngineTool
  213. //
  214. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  215. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  216. this.ClientSize = new System.Drawing.Size(1277, 623);
  217. this.Controls.Add(this.uiSplitContainer1);
  218. this.Controls.Add(this.toolStrip1);
  219. this.Controls.Add(this.statusStrip);
  220. this.Name = "FormHDevEngineTool";
  221. this.Text = "FormHDevEngineTool";
  222. this.Load += new System.EventHandler(this.FormHDevEngineTool_Load);
  223. this.toolStrip1.ResumeLayout(false);
  224. this.toolStrip1.PerformLayout();
  225. this.statusStrip.ResumeLayout(false);
  226. this.statusStrip.PerformLayout();
  227. this.uiSplitContainer1.Panel1.ResumeLayout(false);
  228. this.uiSplitContainer1.Panel2.ResumeLayout(false);
  229. ((System.ComponentModel.ISupportInitialize)(this.uiSplitContainer1)).EndInit();
  230. this.uiSplitContainer1.ResumeLayout(false);
  231. this.uiTabControl1.ResumeLayout(false);
  232. this.tabPage1.ResumeLayout(false);
  233. this.ResumeLayout(false);
  234. this.PerformLayout();
  235. }
  236. #endregion
  237. private System.Windows.Forms.ToolStrip toolStrip1;
  238. private System.Windows.Forms.ToolStripButton tsbtRunTool;
  239. private System.Windows.Forms.StatusStrip statusStrip;
  240. private System.Windows.Forms.ToolStripStatusLabel lb_RunStatus;
  241. private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
  242. private System.Windows.Forms.ToolStripStatusLabel lb_RunTime;
  243. private Sunny.UI.UISplitContainer uiSplitContainer1;
  244. private System.Windows.Forms.Panel panelHImageWindow;
  245. private Sunny.UI.UITabControl uiTabControl1;
  246. private System.Windows.Forms.TabPage tabPage1;
  247. private Sunny.UI.UIRichTextBox txbCodeText;
  248. private System.Windows.Forms.TabPage tabPage2;
  249. private System.Windows.Forms.ToolStripButton tsbReadHdev;
  250. private System.Windows.Forms.ToolStripButton tsbSaveHdev;
  251. private System.Windows.Forms.ToolStripButton tsbReLoad;
  252. }
  253. }