CountryAdd.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. namespace proba
  2. {
  3. partial class CountryAdd
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CountryAdd));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.textBox1 = new System.Windows.Forms.TextBox();
  31. this.button_save = new System.Windows.Forms.Button();
  32. this.button_back = new System.Windows.Forms.Button();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  40. this.label1.Location = new System.Drawing.Point(35, 96);
  41. this.label1.Name = "label1";
  42. this.label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
  43. this.label1.Size = new System.Drawing.Size(75, 24);
  44. this.label1.TabIndex = 16;
  45. this.label1.Text = "Страна";
  46. //
  47. // textBox1
  48. //
  49. this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  50. this.textBox1.Location = new System.Drawing.Point(168, 93);
  51. this.textBox1.MaxLength = 25;
  52. this.textBox1.Name = "textBox1";
  53. this.textBox1.Size = new System.Drawing.Size(210, 29);
  54. this.textBox1.TabIndex = 18;
  55. //
  56. // button_save
  57. //
  58. this.button_save.BackColor = System.Drawing.Color.Gray;
  59. this.button_save.Cursor = System.Windows.Forms.Cursors.Hand;
  60. this.button_save.Font = new System.Drawing.Font("Freestyle Script", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  61. this.button_save.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
  62. this.button_save.Location = new System.Drawing.Point(229, 160);
  63. this.button_save.Name = "button_save";
  64. this.button_save.Size = new System.Drawing.Size(111, 30);
  65. this.button_save.TabIndex = 19;
  66. this.button_save.Text = "Сохранить";
  67. this.button_save.UseVisualStyleBackColor = false;
  68. this.button_save.Click += new System.EventHandler(this.button_save_Click);
  69. //
  70. // button_back
  71. //
  72. this.button_back.BackColor = System.Drawing.Color.Gray;
  73. this.button_back.Cursor = System.Windows.Forms.Cursors.Hand;
  74. this.button_back.Font = new System.Drawing.Font("Freestyle Script", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  75. this.button_back.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
  76. this.button_back.Location = new System.Drawing.Point(57, 160);
  77. this.button_back.Name = "button_back";
  78. this.button_back.Size = new System.Drawing.Size(111, 30);
  79. this.button_back.TabIndex = 20;
  80. this.button_back.Text = "Назад";
  81. this.button_back.UseVisualStyleBackColor = false;
  82. this.button_back.Click += new System.EventHandler(this.button_back_Click);
  83. //
  84. // label2
  85. //
  86. this.label2.AutoSize = true;
  87. this.label2.Font = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  88. this.label2.Location = new System.Drawing.Point(52, 21);
  89. this.label2.Name = "label2";
  90. this.label2.Size = new System.Drawing.Size(294, 26);
  91. this.label2.TabIndex = 21;
  92. this.label2.Text = "ДОБАВЛЕНИЕ СТРАНЫ";
  93. //
  94. // CountryAdd
  95. //
  96. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  97. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  98. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(133)))), ((int)(((byte)(173)))));
  99. this.ClientSize = new System.Drawing.Size(412, 225);
  100. this.Controls.Add(this.label2);
  101. this.Controls.Add(this.button_back);
  102. this.Controls.Add(this.button_save);
  103. this.Controls.Add(this.textBox1);
  104. this.Controls.Add(this.label1);
  105. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  106. this.MaximumSize = new System.Drawing.Size(428, 264);
  107. this.MinimumSize = new System.Drawing.Size(428, 264);
  108. this.Name = "CountryAdd";
  109. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  110. this.Text = "Добавление страны";
  111. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.global_FormClosed);
  112. this.ResumeLayout(false);
  113. this.PerformLayout();
  114. }
  115. #endregion
  116. private System.Windows.Forms.Label label1;
  117. private System.Windows.Forms.TextBox textBox1;
  118. private System.Windows.Forms.Button button_save;
  119. private System.Windows.Forms.Button button_back;
  120. private System.Windows.Forms.Label label2;
  121. }
  122. }