Form4.Designer.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. 
  2. namespace Praktika409
  3. {
  4. partial class Form4
  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.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
  30. this.checkedListBox2 = new System.Windows.Forms.CheckedListBox();
  31. this.checkedListBox3 = new System.Windows.Forms.CheckedListBox();
  32. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  33. this.domainUpDown1 = new System.Windows.Forms.DomainUpDown();
  34. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // checkedListBox1
  38. //
  39. this.checkedListBox1.FormattingEnabled = true;
  40. this.checkedListBox1.Items.AddRange(new object[] {
  41. "Бразилия",
  42. "Аргентина",
  43. "Чили",
  44. "Уругвай",
  45. "Колумбия"});
  46. this.checkedListBox1.Location = new System.Drawing.Point(12, 12);
  47. this.checkedListBox1.Name = "checkedListBox1";
  48. this.checkedListBox1.Size = new System.Drawing.Size(120, 94);
  49. this.checkedListBox1.TabIndex = 0;
  50. //
  51. // checkedListBox2
  52. //
  53. this.checkedListBox2.FormattingEnabled = true;
  54. this.checkedListBox2.Items.AddRange(new object[] {
  55. "C#",
  56. "C/C++"});
  57. this.checkedListBox2.Location = new System.Drawing.Point(138, 12);
  58. this.checkedListBox2.Name = "checkedListBox2";
  59. this.checkedListBox2.Size = new System.Drawing.Size(120, 94);
  60. this.checkedListBox2.TabIndex = 1;
  61. //
  62. // checkedListBox3
  63. //
  64. this.checkedListBox3.FormattingEnabled = true;
  65. this.checkedListBox3.Items.AddRange(new object[] {
  66. "C#",
  67. "C/C++",
  68. "Java",
  69. "VB.NET",
  70. "JavaScript",
  71. "PHP",
  72. "Object-C",
  73. "Python",
  74. "Ruby",
  75. "Delphin",
  76. "Swift",
  77. "F#"});
  78. this.checkedListBox3.Location = new System.Drawing.Point(264, 12);
  79. this.checkedListBox3.MultiColumn = true;
  80. this.checkedListBox3.Name = "checkedListBox3";
  81. this.checkedListBox3.Size = new System.Drawing.Size(369, 94);
  82. this.checkedListBox3.TabIndex = 2;
  83. //
  84. // numericUpDown1
  85. //
  86. this.numericUpDown1.Location = new System.Drawing.Point(12, 133);
  87. this.numericUpDown1.Name = "numericUpDown1";
  88. this.numericUpDown1.Size = new System.Drawing.Size(120, 23);
  89. this.numericUpDown1.TabIndex = 3;
  90. this.numericUpDown1.ThousandsSeparator = true;
  91. //
  92. // domainUpDown1
  93. //
  94. this.domainUpDown1.Location = new System.Drawing.Point(138, 133);
  95. this.domainUpDown1.Name = "domainUpDown1";
  96. this.domainUpDown1.Size = new System.Drawing.Size(120, 23);
  97. this.domainUpDown1.TabIndex = 4;
  98. this.domainUpDown1.Text = "domainUpDown1";
  99. this.domainUpDown1.SelectedItemChanged += new System.EventHandler(this.domainUpDown1_SelectedItemChanged);
  100. //
  101. // Form4
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(800, 450);
  106. this.Controls.Add(this.domainUpDown1);
  107. this.Controls.Add(this.numericUpDown1);
  108. this.Controls.Add(this.checkedListBox3);
  109. this.Controls.Add(this.checkedListBox2);
  110. this.Controls.Add(this.checkedListBox1);
  111. this.Name = "Form4";
  112. this.Text = "Form4";
  113. this.Load += new System.EventHandler(this.Form4_Load);
  114. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  115. this.ResumeLayout(false);
  116. }
  117. #endregion
  118. private System.Windows.Forms.CheckedListBox checkedListBox1;
  119. private System.Windows.Forms.CheckedListBox checkedListBox2;
  120. private System.Windows.Forms.CheckedListBox checkedListBox3;
  121. private System.Windows.Forms.NumericUpDown numericUpDown1;
  122. private System.Windows.Forms.DomainUpDown domainUpDown1;
  123. }
  124. }