Form1.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. 
  2. namespace xicheji
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// 必需的设计器变量。
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// 清理所有正在使用的资源。
  12. /// </summary>
  13. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows 窗体设计器生成的代码
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要修改
  25. /// 使用代码编辑器修改此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(197, 74);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(75, 23);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "open";
  43. this.button1.UseVisualStyleBackColor = true;
  44. this.button1.Click += new System.EventHandler(this.button1_Click);
  45. //
  46. // textBox1
  47. //
  48. this.textBox1.Location = new System.Drawing.Point(134, 127);
  49. this.textBox1.Name = "textBox1";
  50. this.textBox1.Size = new System.Drawing.Size(100, 21);
  51. this.textBox1.TabIndex = 1;
  52. //
  53. // button2
  54. //
  55. this.button2.Location = new System.Drawing.Point(259, 125);
  56. this.button2.Name = "button2";
  57. this.button2.Size = new System.Drawing.Size(75, 23);
  58. this.button2.TabIndex = 2;
  59. this.button2.Text = "read";
  60. this.button2.UseVisualStyleBackColor = true;
  61. this.button2.Click += new System.EventHandler(this.button2_Click);
  62. //
  63. // button3
  64. //
  65. this.button3.Location = new System.Drawing.Point(197, 177);
  66. this.button3.Name = "button3";
  67. this.button3.Size = new System.Drawing.Size(75, 23);
  68. this.button3.TabIndex = 3;
  69. this.button3.Text = "close";
  70. this.button3.UseVisualStyleBackColor = true;
  71. this.button3.Click += new System.EventHandler(this.button3_Click);
  72. //
  73. // richTextBox1
  74. //
  75. this.richTextBox1.Location = new System.Drawing.Point(458, 104);
  76. this.richTextBox1.Name = "richTextBox1";
  77. this.richTextBox1.Size = new System.Drawing.Size(330, 315);
  78. this.richTextBox1.TabIndex = 4;
  79. this.richTextBox1.Text = "";
  80. //
  81. // Form1
  82. //
  83. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  84. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  85. this.ClientSize = new System.Drawing.Size(800, 450);
  86. this.Controls.Add(this.richTextBox1);
  87. this.Controls.Add(this.button3);
  88. this.Controls.Add(this.button2);
  89. this.Controls.Add(this.textBox1);
  90. this.Controls.Add(this.button1);
  91. this.Name = "Form1";
  92. this.Text = "Form1";
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.Button button1;
  98. private System.Windows.Forms.TextBox textBox1;
  99. private System.Windows.Forms.Button button2;
  100. private System.Windows.Forms.Button button3;
  101. private System.Windows.Forms.RichTextBox richTextBox1;
  102. }
  103. }