Form1.Designer.cs 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. namespace WindowsFormsDataAdapter2
  2. {
  3. partial class Form1
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.txtNo = new System.Windows.Forms.TextBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.txtName = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.txtSex = new System.Windows.Forms.TextBox();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.label5 = new System.Windows.Forms.Label();
  37. this.txtAge = new System.Windows.Forms.TextBox();
  38. this.txtBonus = new System.Windows.Forms.TextBox();
  39. this.button1 = new System.Windows.Forms.Button();
  40. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  41. this.SuspendLayout();
  42. //
  43. // dataGridView1
  44. //
  45. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  46. this.dataGridView1.Location = new System.Drawing.Point(12, 12);
  47. this.dataGridView1.Name = "dataGridView1";
  48. this.dataGridView1.RowHeadersWidth = 51;
  49. this.dataGridView1.RowTemplate.Height = 27;
  50. this.dataGridView1.Size = new System.Drawing.Size(560, 190);
  51. this.dataGridView1.TabIndex = 0;
  52. this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(13, 222);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(52, 15);
  60. this.label1.TabIndex = 1;
  61. this.label1.Text = "编号:";
  62. //
  63. // txtNo
  64. //
  65. this.txtNo.Location = new System.Drawing.Point(71, 219);
  66. this.txtNo.Name = "txtNo";
  67. this.txtNo.Size = new System.Drawing.Size(59, 25);
  68. this.txtNo.TabIndex = 2;
  69. //
  70. // label2
  71. //
  72. this.label2.AutoSize = true;
  73. this.label2.Location = new System.Drawing.Point(199, 222);
  74. this.label2.Name = "label2";
  75. this.label2.Size = new System.Drawing.Size(60, 15);
  76. this.label2.TabIndex = 3;
  77. this.label2.Text = "姓名 :";
  78. //
  79. // txtName
  80. //
  81. this.txtName.Location = new System.Drawing.Point(265, 219);
  82. this.txtName.Name = "txtName";
  83. this.txtName.Size = new System.Drawing.Size(95, 25);
  84. this.txtName.TabIndex = 4;
  85. //
  86. // label3
  87. //
  88. this.label3.AutoSize = true;
  89. this.label3.Location = new System.Drawing.Point(436, 222);
  90. this.label3.Name = "label3";
  91. this.label3.Size = new System.Drawing.Size(52, 15);
  92. this.label3.TabIndex = 5;
  93. this.label3.Text = "性别:";
  94. //
  95. // txtSex
  96. //
  97. this.txtSex.Location = new System.Drawing.Point(494, 219);
  98. this.txtSex.Name = "txtSex";
  99. this.txtSex.Size = new System.Drawing.Size(45, 25);
  100. this.txtSex.TabIndex = 6;
  101. //
  102. // label4
  103. //
  104. this.label4.AutoSize = true;
  105. this.label4.Location = new System.Drawing.Point(13, 270);
  106. this.label4.Name = "label4";
  107. this.label4.Size = new System.Drawing.Size(52, 15);
  108. this.label4.TabIndex = 7;
  109. this.label4.Text = "年龄:";
  110. //
  111. // label5
  112. //
  113. this.label5.AutoSize = true;
  114. this.label5.Location = new System.Drawing.Point(199, 270);
  115. this.label5.Name = "label5";
  116. this.label5.Size = new System.Drawing.Size(52, 15);
  117. this.label5.TabIndex = 8;
  118. this.label5.Text = "奖金:";
  119. //
  120. // txtAge
  121. //
  122. this.txtAge.Location = new System.Drawing.Point(71, 265);
  123. this.txtAge.Name = "txtAge";
  124. this.txtAge.Size = new System.Drawing.Size(59, 25);
  125. this.txtAge.TabIndex = 9;
  126. //
  127. // txtBonus
  128. //
  129. this.txtBonus.Location = new System.Drawing.Point(265, 265);
  130. this.txtBonus.Name = "txtBonus";
  131. this.txtBonus.Size = new System.Drawing.Size(95, 25);
  132. this.txtBonus.TabIndex = 10;
  133. //
  134. // button1
  135. //
  136. this.button1.Location = new System.Drawing.Point(439, 262);
  137. this.button1.Name = "button1";
  138. this.button1.Size = new System.Drawing.Size(104, 30);
  139. this.button1.TabIndex = 11;
  140. this.button1.Text = "修改";
  141. this.button1.UseVisualStyleBackColor = true;
  142. this.button1.Click += new System.EventHandler(this.button1_Click);
  143. //
  144. // Form1
  145. //
  146. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  147. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  148. this.ClientSize = new System.Drawing.Size(586, 309);
  149. this.Controls.Add(this.button1);
  150. this.Controls.Add(this.txtBonus);
  151. this.Controls.Add(this.txtAge);
  152. this.Controls.Add(this.label5);
  153. this.Controls.Add(this.label4);
  154. this.Controls.Add(this.txtSex);
  155. this.Controls.Add(this.label3);
  156. this.Controls.Add(this.txtName);
  157. this.Controls.Add(this.label2);
  158. this.Controls.Add(this.txtNo);
  159. this.Controls.Add(this.label1);
  160. this.Controls.Add(this.dataGridView1);
  161. this.Name = "Form1";
  162. this.Text = "Form1";
  163. this.Load += new System.EventHandler(this.Form1_Load);
  164. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  165. this.ResumeLayout(false);
  166. this.PerformLayout();
  167. }
  168. #endregion
  169. private System.Windows.Forms.DataGridView dataGridView1;
  170. private System.Windows.Forms.Label label1;
  171. private System.Windows.Forms.TextBox txtNo;
  172. private System.Windows.Forms.Label label2;
  173. private System.Windows.Forms.TextBox txtName;
  174. private System.Windows.Forms.Label label3;
  175. private System.Windows.Forms.TextBox txtSex;
  176. private System.Windows.Forms.Label label4;
  177. private System.Windows.Forms.Label label5;
  178. private System.Windows.Forms.TextBox txtAge;
  179. private System.Windows.Forms.TextBox txtBonus;
  180. private System.Windows.Forms.Button button1;
  181. }
  182. }