Main.Designer.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. namespace SysConfigTool
  2. {
  3. partial class XyhConfigTool
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.txt = new System.Windows.Forms.TextBox();
  29. this.btn_read = new System.Windows.Forms.Button();
  30. this.btn_save = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // txt
  34. //
  35. this.txt.Location = new System.Drawing.Point(3, 27);
  36. this.txt.Multiline = true;
  37. this.txt.Name = "txt";
  38. this.txt.Size = new System.Drawing.Size(794, 300);
  39. this.txt.TabIndex = 0;
  40. //
  41. // btn_read
  42. //
  43. this.btn_read.Location = new System.Drawing.Point(139, 377);
  44. this.btn_read.Name = "btn_read";
  45. this.btn_read.Size = new System.Drawing.Size(75, 30);
  46. this.btn_read.TabIndex = 1;
  47. this.btn_read.Text = "读取";
  48. this.btn_read.UseVisualStyleBackColor = true;
  49. this.btn_read.Click += new System.EventHandler(this.btn_read_Click);
  50. //
  51. // btn_save
  52. //
  53. this.btn_save.Location = new System.Drawing.Point(481, 377);
  54. this.btn_save.Name = "btn_save";
  55. this.btn_save.Size = new System.Drawing.Size(75, 30);
  56. this.btn_save.TabIndex = 2;
  57. this.btn_save.Text = "保存";
  58. this.btn_save.UseVisualStyleBackColor = true;
  59. this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
  60. //
  61. // XYHConfigTool
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.Controls.Add(this.btn_save);
  66. this.Controls.Add(this.btn_read);
  67. this.Controls.Add(this.txt);
  68. this.Name = "XyhConfigTool";
  69. this.Size = new System.Drawing.Size(800, 450);
  70. this.ResumeLayout(false);
  71. this.PerformLayout();
  72. }
  73. #endregion
  74. private System.Windows.Forms.TextBox txt;
  75. private System.Windows.Forms.Button btn_read;
  76. private System.Windows.Forms.Button btn_save;
  77. }
  78. }