Form6.Designer.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. 
  2. namespace WindowsFormsApp19
  3. {
  4. partial class Form6
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.comboBox1 = new System.Windows.Forms.ComboBox();
  30. this.comboBox2 = new System.Windows.Forms.ComboBox();
  31. this.comboBox3 = new System.Windows.Forms.ComboBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.button1 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // comboBox1
  39. //
  40. this.comboBox1.FormattingEnabled = true;
  41. this.comboBox1.Items.AddRange(new object[] {
  42. "Парагвай",
  43. "Уругвай",
  44. "Эквадор",
  45. "Боливия"});
  46. this.comboBox1.Location = new System.Drawing.Point(77, 60);
  47. this.comboBox1.Name = "comboBox1";
  48. this.comboBox1.Size = new System.Drawing.Size(121, 21);
  49. this.comboBox1.TabIndex = 0;
  50. this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
  51. //
  52. // comboBox2
  53. //
  54. this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  55. this.comboBox2.FormattingEnabled = true;
  56. this.comboBox2.Items.AddRange(new object[] {
  57. "Парагвай",
  58. "Уругвай",
  59. "Эквадор",
  60. "Боливия"});
  61. this.comboBox2.Location = new System.Drawing.Point(332, 60);
  62. this.comboBox2.Name = "comboBox2";
  63. this.comboBox2.Size = new System.Drawing.Size(121, 21);
  64. this.comboBox2.TabIndex = 1;
  65. //
  66. // comboBox3
  67. //
  68. this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple;
  69. this.comboBox3.FormattingEnabled = true;
  70. this.comboBox3.Items.AddRange(new object[] {
  71. "Парагвай",
  72. "Уругвай",
  73. "Эквадор",
  74. "Боливия"});
  75. this.comboBox3.Location = new System.Drawing.Point(562, 60);
  76. this.comboBox3.Name = "comboBox3";
  77. this.comboBox3.Size = new System.Drawing.Size(121, 150);
  78. this.comboBox3.TabIndex = 2;
  79. //
  80. // label1
  81. //
  82. this.label1.AutoSize = true;
  83. this.label1.Location = new System.Drawing.Point(105, 27);
  84. this.label1.Name = "label1";
  85. this.label1.Size = new System.Drawing.Size(58, 13);
  86. this.label1.TabIndex = 3;
  87. this.label1.Text = "DropDown";
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Location = new System.Drawing.Point(362, 27);
  93. this.label2.Name = "label2";
  94. this.label2.Size = new System.Drawing.Size(74, 13);
  95. this.label2.TabIndex = 4;
  96. this.label2.Text = "DropDownList";
  97. //
  98. // label3
  99. //
  100. this.label3.AutoSize = true;
  101. this.label3.Location = new System.Drawing.Point(612, 27);
  102. this.label3.Name = "label3";
  103. this.label3.Size = new System.Drawing.Size(38, 13);
  104. this.label3.TabIndex = 5;
  105. this.label3.Text = "Simple";
  106. //
  107. // button1
  108. //
  109. this.button1.Location = new System.Drawing.Point(653, 274);
  110. this.button1.Name = "button1";
  111. this.button1.Size = new System.Drawing.Size(75, 23);
  112. this.button1.TabIndex = 6;
  113. this.button1.Text = "button1";
  114. this.button1.UseVisualStyleBackColor = true;
  115. this.button1.Click += new System.EventHandler(this.button1_Click);
  116. //
  117. // Form6
  118. //
  119. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  120. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  121. this.ClientSize = new System.Drawing.Size(748, 317);
  122. this.Controls.Add(this.button1);
  123. this.Controls.Add(this.label3);
  124. this.Controls.Add(this.label2);
  125. this.Controls.Add(this.label1);
  126. this.Controls.Add(this.comboBox3);
  127. this.Controls.Add(this.comboBox2);
  128. this.Controls.Add(this.comboBox1);
  129. this.Name = "Form6";
  130. this.Text = "Form6";
  131. this.Load += new System.EventHandler(this.Form6_Load);
  132. this.ResumeLayout(false);
  133. this.PerformLayout();
  134. }
  135. #endregion
  136. private System.Windows.Forms.ComboBox comboBox1;
  137. private System.Windows.Forms.ComboBox comboBox2;
  138. private System.Windows.Forms.ComboBox comboBox3;
  139. private System.Windows.Forms.Label label1;
  140. private System.Windows.Forms.Label label2;
  141. private System.Windows.Forms.Label label3;
  142. private System.Windows.Forms.Button button1;
  143. }
  144. }