MainForm.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. namespace Y.Test.Views
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.checkBox1 = new System.Windows.Forms.CheckBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.listView1 = new System.Windows.Forms.ListView();
  33. this.button2 = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // button1
  37. //
  38. this.button1.Location = new System.Drawing.Point(169, 176);
  39. this.button1.Name = "button1";
  40. this.button1.Size = new System.Drawing.Size(75, 23);
  41. this.button1.TabIndex = 0;
  42. this.button1.Text = "button1";
  43. this.button1.UseVisualStyleBackColor = true;
  44. //
  45. // checkBox1
  46. //
  47. this.checkBox1.AutoSize = true;
  48. this.checkBox1.Location = new System.Drawing.Point(180, 269);
  49. this.checkBox1.Name = "checkBox1";
  50. this.checkBox1.Size = new System.Drawing.Size(78, 16);
  51. this.checkBox1.TabIndex = 1;
  52. this.checkBox1.Text = "checkBox1";
  53. this.checkBox1.UseVisualStyleBackColor = true;
  54. //
  55. // label1
  56. //
  57. this.label1.AutoSize = true;
  58. this.label1.Location = new System.Drawing.Point(201, 332);
  59. this.label1.Name = "label1";
  60. this.label1.Size = new System.Drawing.Size(41, 12);
  61. this.label1.TabIndex = 2;
  62. this.label1.Text = "label1";
  63. //
  64. // listView1
  65. //
  66. this.listView1.Location = new System.Drawing.Point(270, 102);
  67. this.listView1.Name = "listView1";
  68. this.listView1.Size = new System.Drawing.Size(121, 97);
  69. this.listView1.TabIndex = 3;
  70. this.listView1.UseCompatibleStateImageBehavior = false;
  71. //
  72. // button2
  73. //
  74. this.button2.Location = new System.Drawing.Point(315, 244);
  75. this.button2.Name = "button2";
  76. this.button2.Size = new System.Drawing.Size(75, 23);
  77. this.button2.TabIndex = 4;
  78. this.button2.Text = "button2";
  79. this.button2.UseVisualStyleBackColor = true;
  80. this.button2.Click += new System.EventHandler(this.button2_Click);
  81. //
  82. // MainForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  87. this.ClientSize = new System.Drawing.Size(591, 532);
  88. this.Controls.Add(this.button2);
  89. this.Controls.Add(this.listView1);
  90. this.Controls.Add(this.label1);
  91. this.Controls.Add(this.checkBox1);
  92. this.Controls.Add(this.button1);
  93. this.Name = "MainForm";
  94. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  95. this.Text = "MainForm";
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.Button button1;
  101. private System.Windows.Forms.CheckBox checkBox1;
  102. private System.Windows.Forms.Label label1;
  103. private System.Windows.Forms.ListView listView1;
  104. private System.Windows.Forms.Button button2;
  105. }
  106. }