frmMain.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. namespace qdr.app.tools.qfu.gui
  2. {
  3. partial class frmMain
  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(frmMain));
  29. pbImage = new PictureBox();
  30. gbLogo = new GroupBox();
  31. toolStrip1 = new ToolStrip();
  32. toolStripLabel1 = new ToolStripLabel();
  33. tscbCommand = new ToolStripComboBox();
  34. toolStripSeparator1 = new ToolStripSeparator();
  35. tsbutExecute = new ToolStripButton();
  36. toolStripSeparator2 = new ToolStripSeparator();
  37. tsbutClear = new ToolStripButton();
  38. tplLevel1 = new TableLayoutPanel();
  39. groupBox2 = new GroupBox();
  40. tbDescription = new TextBox();
  41. tlpLevel0 = new TableLayoutPanel();
  42. tbConsole = new RichTextBox();
  43. ((System.ComponentModel.ISupportInitialize)pbImage).BeginInit();
  44. gbLogo.SuspendLayout();
  45. toolStrip1.SuspendLayout();
  46. tplLevel1.SuspendLayout();
  47. groupBox2.SuspendLayout();
  48. tlpLevel0.SuspendLayout();
  49. SuspendLayout();
  50. //
  51. // pbImage
  52. //
  53. pbImage.Image = Properties.Resources.qfu;
  54. pbImage.InitialImage = (Image)resources.GetObject("pbImage.InitialImage");
  55. pbImage.Location = new Point(15, 20);
  56. pbImage.Margin = new Padding(3, 2, 3, 2);
  57. pbImage.Name = "pbImage";
  58. pbImage.Size = new Size(134, 115);
  59. pbImage.SizeMode = PictureBoxSizeMode.StretchImage;
  60. pbImage.TabIndex = 0;
  61. pbImage.TabStop = false;
  62. //
  63. // gbLogo
  64. //
  65. gbLogo.Controls.Add(pbImage);
  66. gbLogo.Dock = DockStyle.Fill;
  67. gbLogo.Location = new Point(3, 2);
  68. gbLogo.Margin = new Padding(3, 2, 3, 2);
  69. gbLogo.Name = "gbLogo";
  70. gbLogo.Padding = new Padding(3, 2, 3, 2);
  71. gbLogo.Size = new Size(169, 157);
  72. gbLogo.TabIndex = 1;
  73. gbLogo.TabStop = false;
  74. //
  75. // toolStrip1
  76. //
  77. toolStrip1.ImageScalingSize = new Size(20, 20);
  78. toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripLabel1, tscbCommand, toolStripSeparator1, tsbutExecute, toolStripSeparator2, tsbutClear });
  79. toolStrip1.Location = new Point(0, 0);
  80. toolStrip1.Name = "toolStrip1";
  81. toolStrip1.Size = new Size(845, 27);
  82. toolStrip1.TabIndex = 2;
  83. toolStrip1.Text = "toolStrip1";
  84. //
  85. // toolStripLabel1
  86. //
  87. toolStripLabel1.Name = "toolStripLabel1";
  88. toolStripLabel1.Size = new Size(67, 24);
  89. toolStripLabel1.Text = "Command:";
  90. //
  91. // tscbCommand
  92. //
  93. tscbCommand.Name = "tscbCommand";
  94. tscbCommand.Size = new Size(106, 27);
  95. tscbCommand.ToolTipText = "Select QFU command";
  96. tscbCommand.SelectedIndexChanged += tscbCommand_SelectedIndexChanged;
  97. //
  98. // toolStripSeparator1
  99. //
  100. toolStripSeparator1.Name = "toolStripSeparator1";
  101. toolStripSeparator1.Size = new Size(6, 27);
  102. //
  103. // tsbutExecute
  104. //
  105. tsbutExecute.DisplayStyle = ToolStripItemDisplayStyle.Image;
  106. tsbutExecute.Image = Properties.Resources.Continue;
  107. tsbutExecute.ImageTransparentColor = Color.Magenta;
  108. tsbutExecute.Name = "tsbutExecute";
  109. tsbutExecute.Size = new Size(24, 24);
  110. tsbutExecute.Text = "Execute";
  111. tsbutExecute.ToolTipText = "Execute selected command.";
  112. tsbutExecute.Click += tsbutExecute_Click;
  113. //
  114. // toolStripSeparator2
  115. //
  116. toolStripSeparator2.Name = "toolStripSeparator2";
  117. toolStripSeparator2.Size = new Size(6, 27);
  118. //
  119. // tsbutClear
  120. //
  121. tsbutClear.DisplayStyle = ToolStripItemDisplayStyle.Image;
  122. tsbutClear.Image = Properties.Resources.Clear;
  123. tsbutClear.ImageTransparentColor = Color.Magenta;
  124. tsbutClear.Name = "tsbutClear";
  125. tsbutClear.Size = new Size(24, 24);
  126. tsbutClear.Text = "toolStripButton1";
  127. tsbutClear.ToolTipText = "Clears output window";
  128. tsbutClear.Click += tsbutClear_Click;
  129. //
  130. // tplLevel1
  131. //
  132. tplLevel1.ColumnCount = 2;
  133. tplLevel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 175F));
  134. tplLevel1.ColumnStyles.Add(new ColumnStyle());
  135. tplLevel1.Controls.Add(gbLogo, 0, 0);
  136. tplLevel1.Controls.Add(groupBox2, 1, 0);
  137. tplLevel1.Dock = DockStyle.Fill;
  138. tplLevel1.Location = new Point(3, 2);
  139. tplLevel1.Margin = new Padding(3, 2, 3, 2);
  140. tplLevel1.Name = "tplLevel1";
  141. tplLevel1.RowCount = 1;
  142. tplLevel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
  143. tplLevel1.Size = new Size(839, 161);
  144. tplLevel1.TabIndex = 3;
  145. //
  146. // groupBox2
  147. //
  148. groupBox2.Controls.Add(tbDescription);
  149. groupBox2.Dock = DockStyle.Fill;
  150. groupBox2.Location = new Point(178, 2);
  151. groupBox2.Margin = new Padding(3, 2, 3, 2);
  152. groupBox2.Name = "groupBox2";
  153. groupBox2.Padding = new Padding(3, 2, 3, 2);
  154. groupBox2.Size = new Size(661, 157);
  155. groupBox2.TabIndex = 2;
  156. groupBox2.TabStop = false;
  157. groupBox2.Text = "Description";
  158. //
  159. // tbDescription
  160. //
  161. tbDescription.Dock = DockStyle.Fill;
  162. tbDescription.Location = new Point(3, 18);
  163. tbDescription.Margin = new Padding(3, 2, 3, 2);
  164. tbDescription.Multiline = true;
  165. tbDescription.Name = "tbDescription";
  166. tbDescription.ReadOnly = true;
  167. tbDescription.ScrollBars = ScrollBars.Horizontal;
  168. tbDescription.Size = new Size(655, 137);
  169. tbDescription.TabIndex = 0;
  170. //
  171. // tlpLevel0
  172. //
  173. tlpLevel0.ColumnCount = 1;
  174. tlpLevel0.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
  175. tlpLevel0.Controls.Add(tplLevel1, 0, 0);
  176. tlpLevel0.Controls.Add(tbConsole, 0, 2);
  177. tlpLevel0.Dock = DockStyle.Fill;
  178. tlpLevel0.Location = new Point(0, 27);
  179. tlpLevel0.Margin = new Padding(3, 2, 3, 2);
  180. tlpLevel0.Name = "tlpLevel0";
  181. tlpLevel0.RowCount = 3;
  182. tlpLevel0.RowStyles.Add(new RowStyle(SizeType.Absolute, 165F));
  183. tlpLevel0.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  184. tlpLevel0.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
  185. tlpLevel0.Size = new Size(845, 371);
  186. tlpLevel0.TabIndex = 4;
  187. //
  188. // tbConsole
  189. //
  190. tbConsole.BackColor = Color.Black;
  191. tbConsole.Dock = DockStyle.Fill;
  192. tbConsole.Font = new Font("Consolas", 10.2F, FontStyle.Regular, GraphicsUnit.Point, 0);
  193. tbConsole.ForeColor = Color.Lime;
  194. tbConsole.Location = new Point(3, 270);
  195. tbConsole.Margin = new Padding(3, 2, 3, 2);
  196. tbConsole.Name = "tbConsole";
  197. tbConsole.ReadOnly = true;
  198. tbConsole.ScrollBars = RichTextBoxScrollBars.ForcedVertical;
  199. tbConsole.Size = new Size(839, 99);
  200. tbConsole.TabIndex = 4;
  201. tbConsole.Text = "";
  202. //
  203. // frmMain
  204. //
  205. AutoScaleDimensions = new SizeF(7F, 15F);
  206. AutoScaleMode = AutoScaleMode.Font;
  207. ClientSize = new Size(845, 398);
  208. Controls.Add(tlpLevel0);
  209. Controls.Add(toolStrip1);
  210. Icon = (Icon)resources.GetObject("$this.Icon");
  211. Margin = new Padding(3, 2, 3, 2);
  212. Name = "frmMain";
  213. Text = "QFU GUI";
  214. Load += frmMain_Load;
  215. ((System.ComponentModel.ISupportInitialize)pbImage).EndInit();
  216. gbLogo.ResumeLayout(false);
  217. toolStrip1.ResumeLayout(false);
  218. toolStrip1.PerformLayout();
  219. tplLevel1.ResumeLayout(false);
  220. groupBox2.ResumeLayout(false);
  221. groupBox2.PerformLayout();
  222. tlpLevel0.ResumeLayout(false);
  223. ResumeLayout(false);
  224. PerformLayout();
  225. }
  226. #endregion
  227. private PictureBox pbImage;
  228. private GroupBox gbLogo;
  229. private ToolStrip toolStrip1;
  230. private ToolStripLabel toolStripLabel1;
  231. private ToolStripComboBox tscbCommand;
  232. private ToolStripSeparator toolStripSeparator1;
  233. private ToolStripButton tsbutExecute;
  234. private TableLayoutPanel tplLevel1;
  235. private GroupBox groupBox2;
  236. private TableLayoutPanel tlpLevel0;
  237. private RichTextBox tbConsole;
  238. private TextBox tbDescription;
  239. private ToolStripSeparator toolStripSeparator2;
  240. private ToolStripButton tsbutClear;
  241. }
  242. }