Form1.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. 
  2. namespace Osadchi
  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.button1 = new System.Windows.Forms.Button();
  30. this.checkBox1 = new System.Windows.Forms.CheckBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.comboBox1 = new System.Windows.Forms.ComboBox();
  33. this.SuspendLayout();
  34. //
  35. // button1
  36. //
  37. this.button1.Location = new System.Drawing.Point(686, 228);
  38. this.button1.Name = "button1";
  39. this.button1.Size = new System.Drawing.Size(75, 23);
  40. this.button1.TabIndex = 0;
  41. this.button1.Text = "button1";
  42. this.button1.UseVisualStyleBackColor = true;
  43. //
  44. // checkBox1
  45. //
  46. this.checkBox1.AutoSize = true;
  47. this.checkBox1.Location = new System.Drawing.Point(707, 168);
  48. this.checkBox1.Name = "checkBox1";
  49. this.checkBox1.Size = new System.Drawing.Size(80, 17);
  50. this.checkBox1.TabIndex = 1;
  51. this.checkBox1.Text = "checkBox1";
  52. this.checkBox1.UseVisualStyleBackColor = true;
  53. //
  54. // label1
  55. //
  56. this.label1.AutoSize = true;
  57. this.label1.Location = new System.Drawing.Point(777, 279);
  58. this.label1.Name = "label1";
  59. this.label1.Size = new System.Drawing.Size(35, 13);
  60. this.label1.TabIndex = 2;
  61. this.label1.Text = "label1";
  62. //
  63. // comboBox1
  64. //
  65. this.comboBox1.FormattingEnabled = true;
  66. this.comboBox1.Location = new System.Drawing.Point(636, 353);
  67. this.comboBox1.Name = "comboBox1";
  68. this.comboBox1.Size = new System.Drawing.Size(121, 21);
  69. this.comboBox1.TabIndex = 3;
  70. //
  71. // Form1
  72. //
  73. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  74. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  75. this.ClientSize = new System.Drawing.Size(1042, 582);
  76. this.Controls.Add(this.comboBox1);
  77. this.Controls.Add(this.label1);
  78. this.Controls.Add(this.checkBox1);
  79. this.Controls.Add(this.button1);
  80. this.Name = "Form1";
  81. this.Text = "Form1";
  82. this.ResumeLayout(false);
  83. this.PerformLayout();
  84. }
  85. #endregion
  86. private System.Windows.Forms.Button button1;
  87. private System.Windows.Forms.CheckBox checkBox1;
  88. private System.Windows.Forms.Label label1;
  89. private System.Windows.Forms.ComboBox comboBox1;
  90. }
  91. }