Form1.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace WindowsFormsListView
  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.listView1 = new System.Windows.Forms.ListView();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.button3 = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // listView1
  36. //
  37. this.listView1.HideSelection = false;
  38. this.listView1.Location = new System.Drawing.Point(0, 0);
  39. this.listView1.Name = "listView1";
  40. this.listView1.Size = new System.Drawing.Size(461, 181);
  41. this.listView1.TabIndex = 0;
  42. this.listView1.UseCompatibleStateImageBehavior = false;
  43. //
  44. // textBox1
  45. //
  46. this.textBox1.Location = new System.Drawing.Point(0, 188);
  47. this.textBox1.Name = "textBox1";
  48. this.textBox1.Size = new System.Drawing.Size(333, 25);
  49. this.textBox1.TabIndex = 1;
  50. //
  51. // button1
  52. //
  53. this.button1.Location = new System.Drawing.Point(362, 189);
  54. this.button1.Name = "button1";
  55. this.button1.Size = new System.Drawing.Size(75, 23);
  56. this.button1.TabIndex = 2;
  57. this.button1.Text = "添加";
  58. this.button1.UseVisualStyleBackColor = true;
  59. this.button1.Click += new System.EventHandler(this.button1_Click);
  60. //
  61. // button2
  62. //
  63. this.button2.Location = new System.Drawing.Point(266, 228);
  64. this.button2.Name = "button2";
  65. this.button2.Size = new System.Drawing.Size(75, 23);
  66. this.button2.TabIndex = 3;
  67. this.button2.Text = "移除项";
  68. this.button2.UseVisualStyleBackColor = true;
  69. this.button2.Click += new System.EventHandler(this.button2_Click);
  70. //
  71. // button3
  72. //
  73. this.button3.Location = new System.Drawing.Point(362, 228);
  74. this.button3.Name = "button3";
  75. this.button3.Size = new System.Drawing.Size(75, 23);
  76. this.button3.TabIndex = 4;
  77. this.button3.Text = "清空";
  78. this.button3.UseVisualStyleBackColor = true;
  79. this.button3.Click += new System.EventHandler(this.button3_Click);
  80. //
  81. // Form1
  82. //
  83. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  84. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  85. this.ClientSize = new System.Drawing.Size(473, 263);
  86. this.Controls.Add(this.button3);
  87. this.Controls.Add(this.button2);
  88. this.Controls.Add(this.button1);
  89. this.Controls.Add(this.textBox1);
  90. this.Controls.Add(this.listView1);
  91. this.Name = "Form1";
  92. this.Text = "Form1";
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.ListView listView1;
  98. private System.Windows.Forms.TextBox textBox1;
  99. private System.Windows.Forms.Button button1;
  100. private System.Windows.Forms.Button button2;
  101. private System.Windows.Forms.Button button3;
  102. }
  103. }