SystemSetting.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. namespace BaseLibRWFile
  2. {
  3. partial class Form_SysSet
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_SysSet));
  30. this.PgHardConfig = new System.Windows.Forms.PropertyGrid();
  31. this.btnAdd = new System.Windows.Forms.Button();
  32. this.treeView1 = new System.Windows.Forms.TreeView();
  33. this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  34. this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.deleteAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.btnHardSave = new System.Windows.Forms.Button();
  37. this.tabControl1 = new System.Windows.Forms.TabControl();
  38. this.tpHardConfig = new System.Windows.Forms.TabPage();
  39. this.tpSysSetting = new System.Windows.Forms.TabPage();
  40. this.btnSysSave = new System.Windows.Forms.Button();
  41. this.pgSysSetting = new System.Windows.Forms.PropertyGrid();
  42. this.contextMenuStrip1.SuspendLayout();
  43. this.tabControl1.SuspendLayout();
  44. this.tpHardConfig.SuspendLayout();
  45. this.tpSysSetting.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // PgHardConfig
  49. //
  50. this.PgHardConfig.Location = new System.Drawing.Point(28, 32);
  51. this.PgHardConfig.Margin = new System.Windows.Forms.Padding(4);
  52. this.PgHardConfig.Name = "PgHardConfig";
  53. this.PgHardConfig.Size = new System.Drawing.Size(252, 314);
  54. this.PgHardConfig.TabIndex = 24;
  55. this.PgHardConfig.ToolbarVisible = false;
  56. this.PgHardConfig.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.PgHardConfig_PropertyValueChanged);
  57. //
  58. // btnAdd
  59. //
  60. this.btnAdd.Location = new System.Drawing.Point(341, 82);
  61. this.btnAdd.Margin = new System.Windows.Forms.Padding(4);
  62. this.btnAdd.Name = "btnAdd";
  63. this.btnAdd.Size = new System.Drawing.Size(100, 29);
  64. this.btnAdd.TabIndex = 25;
  65. this.btnAdd.Text = "Add";
  66. this.btnAdd.UseVisualStyleBackColor = true;
  67. this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
  68. //
  69. // treeView1
  70. //
  71. this.treeView1.ContextMenuStrip = this.contextMenuStrip1;
  72. this.treeView1.Location = new System.Drawing.Point(496, 65);
  73. this.treeView1.Margin = new System.Windows.Forms.Padding(4);
  74. this.treeView1.Name = "treeView1";
  75. this.treeView1.Size = new System.Drawing.Size(247, 119);
  76. this.treeView1.TabIndex = 26;
  77. this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1_AfterSelect);
  78. //
  79. // contextMenuStrip1
  80. //
  81. this.contextMenuStrip1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  82. this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  83. this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  84. this.deleteToolStripMenuItem,
  85. this.deleteAllToolStripMenuItem});
  86. this.contextMenuStrip1.Name = "contextMenuStrip1";
  87. this.contextMenuStrip1.Size = new System.Drawing.Size(189, 64);
  88. //
  89. // deleteToolStripMenuItem
  90. //
  91. this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
  92. this.deleteToolStripMenuItem.Size = new System.Drawing.Size(188, 30);
  93. this.deleteToolStripMenuItem.Text = "Delete";
  94. this.deleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteToolStripMenuItem_Click);
  95. //
  96. // deleteAllToolStripMenuItem
  97. //
  98. this.deleteAllToolStripMenuItem.Name = "deleteAllToolStripMenuItem";
  99. this.deleteAllToolStripMenuItem.Size = new System.Drawing.Size(188, 30);
  100. this.deleteAllToolStripMenuItem.Text = "DeleteAll";
  101. this.deleteAllToolStripMenuItem.Click += new System.EventHandler(this.DeleteAllToolStripMenuItem_Click);
  102. //
  103. // btnHardSave
  104. //
  105. this.btnHardSave.Location = new System.Drawing.Point(341, 180);
  106. this.btnHardSave.Margin = new System.Windows.Forms.Padding(4);
  107. this.btnHardSave.Name = "btnHardSave";
  108. this.btnHardSave.Size = new System.Drawing.Size(100, 29);
  109. this.btnHardSave.TabIndex = 27;
  110. this.btnHardSave.Text = "Save";
  111. this.btnHardSave.UseVisualStyleBackColor = true;
  112. this.btnHardSave.Click += new System.EventHandler(this.BtnSave_Click);
  113. //
  114. // tabControl1
  115. //
  116. this.tabControl1.Controls.Add(this.tpHardConfig);
  117. this.tabControl1.Controls.Add(this.tpSysSetting);
  118. this.tabControl1.ItemSize = new System.Drawing.Size(60, 30);
  119. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  120. this.tabControl1.Margin = new System.Windows.Forms.Padding(4);
  121. this.tabControl1.Name = "tabControl1";
  122. this.tabControl1.SelectedIndex = 0;
  123. this.tabControl1.Size = new System.Drawing.Size(888, 455);
  124. this.tabControl1.TabIndex = 28;
  125. //
  126. // tpHardConfig
  127. //
  128. this.tpHardConfig.BackColor = System.Drawing.SystemColors.Control;
  129. this.tpHardConfig.Controls.Add(this.treeView1);
  130. this.tpHardConfig.Controls.Add(this.btnAdd);
  131. this.tpHardConfig.Controls.Add(this.PgHardConfig);
  132. this.tpHardConfig.Controls.Add(this.btnHardSave);
  133. this.tpHardConfig.Location = new System.Drawing.Point(8, 38);
  134. this.tpHardConfig.Margin = new System.Windows.Forms.Padding(4);
  135. this.tpHardConfig.Name = "tpHardConfig";
  136. this.tpHardConfig.Padding = new System.Windows.Forms.Padding(4);
  137. this.tpHardConfig.Size = new System.Drawing.Size(872, 409);
  138. this.tpHardConfig.TabIndex = 0;
  139. this.tpHardConfig.Text = "HardConfig";
  140. //
  141. // tpSysSetting
  142. //
  143. this.tpSysSetting.BackColor = System.Drawing.SystemColors.Control;
  144. this.tpSysSetting.Controls.Add(this.btnSysSave);
  145. this.tpSysSetting.Controls.Add(this.pgSysSetting);
  146. this.tpSysSetting.Location = new System.Drawing.Point(8, 38);
  147. this.tpSysSetting.Margin = new System.Windows.Forms.Padding(4);
  148. this.tpSysSetting.Name = "tpSysSetting";
  149. this.tpSysSetting.Padding = new System.Windows.Forms.Padding(4);
  150. this.tpSysSetting.Size = new System.Drawing.Size(872, 409);
  151. this.tpSysSetting.TabIndex = 1;
  152. this.tpSysSetting.Text = "SystemSetting";
  153. //
  154. // btnSysSave
  155. //
  156. this.btnSysSave.Location = new System.Drawing.Point(389, 272);
  157. this.btnSysSave.Margin = new System.Windows.Forms.Padding(4);
  158. this.btnSysSave.Name = "btnSysSave";
  159. this.btnSysSave.Size = new System.Drawing.Size(100, 29);
  160. this.btnSysSave.TabIndex = 28;
  161. this.btnSysSave.Text = "Save";
  162. this.btnSysSave.UseVisualStyleBackColor = true;
  163. this.btnSysSave.Click += new System.EventHandler(this.BtnSysSave_Click);
  164. //
  165. // pgSysSetting
  166. //
  167. this.pgSysSetting.Location = new System.Drawing.Point(47, 32);
  168. this.pgSysSetting.Margin = new System.Windows.Forms.Padding(4);
  169. this.pgSysSetting.Name = "pgSysSetting";
  170. this.pgSysSetting.Size = new System.Drawing.Size(252, 314);
  171. this.pgSysSetting.TabIndex = 25;
  172. this.pgSysSetting.ToolbarVisible = false;
  173. //
  174. // Form_SysSet
  175. //
  176. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  177. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  178. this.ClientSize = new System.Drawing.Size(1116, 612);
  179. this.Controls.Add(this.tabControl1);
  180. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  181. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  182. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  183. this.Margin = new System.Windows.Forms.Padding(4);
  184. this.Name = "Form_SysSet";
  185. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  186. this.Text = "SystemSetting";
  187. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_SysSet_FormClosing);
  188. this.Load += new System.EventHandler(this.Form1_Load);
  189. this.contextMenuStrip1.ResumeLayout(false);
  190. this.tabControl1.ResumeLayout(false);
  191. this.tpHardConfig.ResumeLayout(false);
  192. this.tpSysSetting.ResumeLayout(false);
  193. this.ResumeLayout(false);
  194. }
  195. #endregion
  196. private System.Windows.Forms.PropertyGrid PgHardConfig;
  197. private System.Windows.Forms.Button btnAdd;
  198. private System.Windows.Forms.TreeView treeView1;
  199. private System.Windows.Forms.Button btnHardSave;
  200. private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  201. private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
  202. private System.Windows.Forms.TabControl tabControl1;
  203. private System.Windows.Forms.TabPage tpHardConfig;
  204. private System.Windows.Forms.TabPage tpSysSetting;
  205. private System.Windows.Forms.ToolStripMenuItem deleteAllToolStripMenuItem;
  206. private System.Windows.Forms.Button btnSysSave;
  207. private System.Windows.Forms.PropertyGrid pgSysSetting;
  208. }
  209. }