Lab2.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. namespace WindowsFormsApp6
  2. {
  3. partial class Lab2
  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. this.tbInput = new System.Windows.Forms.TextBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // tbInput
  34. //
  35. this.tbInput.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  36. this.tbInput.Location = new System.Drawing.Point(15, 52);
  37. this.tbInput.Name = "tbInput";
  38. this.tbInput.Size = new System.Drawing.Size(296, 26);
  39. this.tbInput.TabIndex = 0;
  40. //
  41. // label1
  42. //
  43. this.label1.AutoSize = true;
  44. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  45. this.label1.Location = new System.Drawing.Point(11, 7);
  46. this.label1.Name = "label1";
  47. this.label1.Size = new System.Drawing.Size(241, 20);
  48. this.label1.TabIndex = 1;
  49. this.label1.Text = "Проверка на почтовый индекс";
  50. //
  51. // button1
  52. //
  53. this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  54. this.button1.Location = new System.Drawing.Point(97, 104);
  55. this.button1.Name = "button1";
  56. this.button1.Size = new System.Drawing.Size(119, 36);
  57. this.button1.TabIndex = 2;
  58. this.button1.Text = "Проверить";
  59. this.button1.UseVisualStyleBackColor = true;
  60. this.button1.Click += new System.EventHandler(this.btnCalculate_Click);
  61. //
  62. // Lab2
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(327, 152);
  67. this.Controls.Add(this.button1);
  68. this.Controls.Add(this.label1);
  69. this.Controls.Add(this.tbInput);
  70. this.Name = "Lab2";
  71. this.Text = "Lab2";
  72. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Lab2_FormClosed);
  73. this.Load += new System.EventHandler(this.Lab2_Load);
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.TextBox tbInput;
  79. private System.Windows.Forms.Label label1;
  80. private System.Windows.Forms.Button button1;
  81. }
  82. }