Form5.Designer.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. 
  2. namespace WindowsFormsApp19
  3. {
  4. partial class Form5
  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.listBox1 = new System.Windows.Forms.ListBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.button2 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // listBox1
  35. //
  36. this.listBox1.FormattingEnabled = true;
  37. this.listBox1.Items.AddRange(new object[] {
  38. "\"Бразилия\",",
  39. " \"Аргентина\",",
  40. " \"Чили\",",
  41. " \"Уругвай\",",
  42. " \"Колумбия\""});
  43. this.listBox1.Location = new System.Drawing.Point(45, 33);
  44. this.listBox1.Name = "listBox1";
  45. this.listBox1.Size = new System.Drawing.Size(361, 186);
  46. this.listBox1.TabIndex = 0;
  47. this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
  48. //
  49. // button1
  50. //
  51. this.button1.Location = new System.Drawing.Point(257, 241);
  52. this.button1.Name = "button1";
  53. this.button1.Size = new System.Drawing.Size(75, 23);
  54. this.button1.TabIndex = 1;
  55. this.button1.Text = "OK";
  56. this.button1.UseVisualStyleBackColor = true;
  57. //
  58. // button2
  59. //
  60. this.button2.Location = new System.Drawing.Point(351, 241);
  61. this.button2.Name = "button2";
  62. this.button2.Size = new System.Drawing.Size(75, 23);
  63. this.button2.TabIndex = 2;
  64. this.button2.Text = ">";
  65. this.button2.UseVisualStyleBackColor = true;
  66. this.button2.Click += new System.EventHandler(this.button2_Click);
  67. //
  68. // Form5
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  72. this.ClientSize = new System.Drawing.Size(447, 276);
  73. this.Controls.Add(this.button2);
  74. this.Controls.Add(this.button1);
  75. this.Controls.Add(this.listBox1);
  76. this.Name = "Form5";
  77. this.Text = "Form5";
  78. this.ResumeLayout(false);
  79. }
  80. #endregion
  81. private System.Windows.Forms.ListBox listBox1;
  82. private System.Windows.Forms.Button button1;
  83. private System.Windows.Forms.Button button2;
  84. }
  85. }