Form1.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. 
  2. namespace WindowsFormsApp13
  3. {
  4. partial class Form1
  5. {
  6. /// <summary>
  7. /// Обязательная переменная конструктора.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Освободить все используемые ресурсы.
  12. /// </summary>
  13. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  23. /// <summary>
  24. /// Требуемый метод для поддержки конструктора — не изменяйте
  25. /// содержимое этого метода с помощью редактора кода.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.groupBox1 = new System.Windows.Forms.GroupBox();
  30. this.radioButton1 = new System.Windows.Forms.RadioButton();
  31. this.radioButton2 = new System.Windows.Forms.RadioButton();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.button1 = new System.Windows.Forms.Button();
  34. this.button2 = new System.Windows.Forms.Button();
  35. this.groupBox1.SuspendLayout();
  36. this.groupBox2.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // groupBox1
  40. //
  41. this.groupBox1.Controls.Add(this.radioButton2);
  42. this.groupBox1.Controls.Add(this.radioButton1);
  43. this.groupBox1.Location = new System.Drawing.Point(144, 100);
  44. this.groupBox1.Name = "groupBox1";
  45. this.groupBox1.Size = new System.Drawing.Size(200, 100);
  46. this.groupBox1.TabIndex = 0;
  47. this.groupBox1.TabStop = false;
  48. this.groupBox1.Text = "Сделайте выбор";
  49. //
  50. // radioButton1
  51. //
  52. this.radioButton1.AutoSize = true;
  53. this.radioButton1.Location = new System.Drawing.Point(6, 24);
  54. this.radioButton1.Name = "radioButton1";
  55. this.radioButton1.Size = new System.Drawing.Size(74, 17);
  56. this.radioButton1.TabIndex = 0;
  57. this.radioButton1.TabStop = true;
  58. this.radioButton1.Text = "Включить";
  59. this.radioButton1.UseVisualStyleBackColor = true;
  60. //
  61. // radioButton2
  62. //
  63. this.radioButton2.AutoSize = true;
  64. this.radioButton2.Location = new System.Drawing.Point(6, 48);
  65. this.radioButton2.Name = "radioButton2";
  66. this.radioButton2.Size = new System.Drawing.Size(82, 17);
  67. this.radioButton2.TabIndex = 1;
  68. this.radioButton2.TabStop = true;
  69. this.radioButton2.Text = "Выключить";
  70. this.radioButton2.UseVisualStyleBackColor = true;
  71. //
  72. // groupBox2
  73. //
  74. this.groupBox2.Controls.Add(this.button2);
  75. this.groupBox2.Controls.Add(this.button1);
  76. this.groupBox2.Location = new System.Drawing.Point(144, 262);
  77. this.groupBox2.Name = "groupBox2";
  78. this.groupBox2.Size = new System.Drawing.Size(200, 100);
  79. this.groupBox2.TabIndex = 2;
  80. this.groupBox2.TabStop = false;
  81. this.groupBox2.Text = "Сделайте выбор";
  82. //
  83. // button1
  84. //
  85. this.button1.Location = new System.Drawing.Point(18, 48);
  86. this.button1.Name = "button1";
  87. this.button1.Size = new System.Drawing.Size(42, 23);
  88. this.button1.TabIndex = 0;
  89. this.button1.Text = "Ок";
  90. this.button1.UseVisualStyleBackColor = true;
  91. //
  92. // button2
  93. //
  94. this.button2.Location = new System.Drawing.Point(109, 48);
  95. this.button2.Name = "button2";
  96. this.button2.Size = new System.Drawing.Size(58, 23);
  97. this.button2.TabIndex = 1;
  98. this.button2.Text = "Отмен";
  99. this.button2.UseVisualStyleBackColor = true;
  100. //
  101. // Form1
  102. //
  103. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  104. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  105. this.ClientSize = new System.Drawing.Size(800, 450);
  106. this.Controls.Add(this.groupBox2);
  107. this.Controls.Add(this.groupBox1);
  108. this.Name = "Form1";
  109. this.Text = "Form1";
  110. this.Load += new System.EventHandler(this.Form1_Load);
  111. this.groupBox1.ResumeLayout(false);
  112. this.groupBox1.PerformLayout();
  113. this.groupBox2.ResumeLayout(false);
  114. this.ResumeLayout(false);
  115. }
  116. #endregion
  117. private System.Windows.Forms.GroupBox groupBox1;
  118. private System.Windows.Forms.RadioButton radioButton2;
  119. private System.Windows.Forms.RadioButton radioButton1;
  120. private System.Windows.Forms.GroupBox groupBox2;
  121. private System.Windows.Forms.Button button2;
  122. private System.Windows.Forms.Button button1;
  123. }
  124. }