MainForm.Designer.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace xicheji
  2. {
  3. partial class MainForm
  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. button1 = new Button();
  29. richTextBox1 = new RichTextBox();
  30. button2 = new Button();
  31. button3 = new Button();
  32. SuspendLayout();
  33. //
  34. // button1
  35. //
  36. button1.Location = new Point(126, 47);
  37. button1.Name = "button1";
  38. button1.Size = new Size(75, 23);
  39. button1.TabIndex = 0;
  40. button1.Text = "button1";
  41. button1.UseVisualStyleBackColor = true;
  42. button1.Click += button1_Click;
  43. //
  44. // richTextBox1
  45. //
  46. richTextBox1.Location = new Point(462, 28);
  47. richTextBox1.Name = "richTextBox1";
  48. richTextBox1.Size = new Size(299, 392);
  49. richTextBox1.TabIndex = 1;
  50. richTextBox1.Text = "";
  51. //
  52. // button2
  53. //
  54. button2.Location = new Point(126, 76);
  55. button2.Name = "button2";
  56. button2.Size = new Size(75, 23);
  57. button2.TabIndex = 3;
  58. button2.Text = "button2";
  59. button2.UseVisualStyleBackColor = true;
  60. button2.Click += button2_Click;
  61. //
  62. // button3
  63. //
  64. button3.Location = new Point(115, 125);
  65. button3.Name = "button3";
  66. button3.Size = new Size(75, 23);
  67. button3.TabIndex = 4;
  68. button3.Text = "button3";
  69. button3.UseVisualStyleBackColor = true;
  70. button3.Click += button3_Click;
  71. //
  72. // MainForm
  73. //
  74. AutoScaleDimensions = new SizeF(7F, 17F);
  75. AutoScaleMode = AutoScaleMode.Font;
  76. ClientSize = new Size(800, 450);
  77. Controls.Add(button3);
  78. Controls.Add(button2);
  79. Controls.Add(richTextBox1);
  80. Controls.Add(button1);
  81. Name = "MainForm";
  82. Text = "Form1";
  83. ResumeLayout(false);
  84. }
  85. #endregion
  86. private Button button1;
  87. private RichTextBox richTextBox1;
  88. private Button button2;
  89. private Button button3;
  90. }
  91. }