Form8.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. 
  2. namespace Praktika409
  3. {
  4. partial class Form8
  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.components = new System.ComponentModel.Container();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  32. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  33. this.textBox1 = new System.Windows.Forms.TextBox();
  34. this.button2 = new System.Windows.Forms.Button();
  35. this.button3 = new System.Windows.Forms.Button();
  36. this.fontDialog1 = new System.Windows.Forms.FontDialog();
  37. this.button4 = new System.Windows.Forms.Button();
  38. this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
  39. this.nameBox = new System.Windows.Forms.TextBox();
  40. this.ageBox = new System.Windows.Forms.TextBox();
  41. ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
  42. this.SuspendLayout();
  43. //
  44. // button1
  45. //
  46. this.button1.Location = new System.Drawing.Point(12, 12);
  47. this.button1.Name = "button1";
  48. this.button1.Size = new System.Drawing.Size(75, 23);
  49. this.button1.TabIndex = 0;
  50. this.button1.Text = "button1";
  51. this.button1.UseVisualStyleBackColor = true;
  52. this.button1.Click += new System.EventHandler(this.button1_Click);
  53. //
  54. // openFileDialog1
  55. //
  56. this.openFileDialog1.FileName = "openFileDialog1";
  57. //
  58. // textBox1
  59. //
  60. this.textBox1.Location = new System.Drawing.Point(12, 105);
  61. this.textBox1.Name = "textBox1";
  62. this.textBox1.Size = new System.Drawing.Size(156, 23);
  63. this.textBox1.TabIndex = 1;
  64. //
  65. // button2
  66. //
  67. this.button2.Location = new System.Drawing.Point(12, 134);
  68. this.button2.Name = "button2";
  69. this.button2.Size = new System.Drawing.Size(75, 23);
  70. this.button2.TabIndex = 2;
  71. this.button2.Text = "button2";
  72. this.button2.UseVisualStyleBackColor = true;
  73. this.button2.Click += new System.EventHandler(this.button2_Click);
  74. //
  75. // button3
  76. //
  77. this.button3.Location = new System.Drawing.Point(93, 134);
  78. this.button3.Name = "button3";
  79. this.button3.Size = new System.Drawing.Size(75, 23);
  80. this.button3.TabIndex = 3;
  81. this.button3.Text = "button3";
  82. this.button3.UseVisualStyleBackColor = true;
  83. this.button3.Click += new System.EventHandler(this.button3_Click);
  84. //
  85. // button4
  86. //
  87. this.button4.Location = new System.Drawing.Point(269, 134);
  88. this.button4.Name = "button4";
  89. this.button4.Size = new System.Drawing.Size(75, 23);
  90. this.button4.TabIndex = 4;
  91. this.button4.Text = "button4";
  92. this.button4.UseVisualStyleBackColor = true;
  93. this.button4.Click += new System.EventHandler(this.button4_Click);
  94. //
  95. // errorProvider1
  96. //
  97. this.errorProvider1.ContainerControl = this;
  98. //
  99. // nameBox
  100. //
  101. this.nameBox.Location = new System.Drawing.Point(12, 223);
  102. this.nameBox.Name = "nameBox";
  103. this.nameBox.Size = new System.Drawing.Size(100, 23);
  104. this.nameBox.TabIndex = 5;
  105. this.nameBox.TextChanged += new System.EventHandler(this.nameBox_TextChanged);
  106. this.nameBox.Validating += new System.ComponentModel.CancelEventHandler(this.nameBox_Validating);
  107. //
  108. // ageBox
  109. //
  110. this.ageBox.Location = new System.Drawing.Point(12, 265);
  111. this.ageBox.Name = "ageBox";
  112. this.ageBox.Size = new System.Drawing.Size(100, 23);
  113. this.ageBox.TabIndex = 6;
  114. this.ageBox.Validating += new System.ComponentModel.CancelEventHandler(this.ageBox_Validating);
  115. //
  116. // Form8
  117. //
  118. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  119. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  120. this.ClientSize = new System.Drawing.Size(800, 450);
  121. this.Controls.Add(this.ageBox);
  122. this.Controls.Add(this.nameBox);
  123. this.Controls.Add(this.button4);
  124. this.Controls.Add(this.button3);
  125. this.Controls.Add(this.button2);
  126. this.Controls.Add(this.textBox1);
  127. this.Controls.Add(this.button1);
  128. this.Name = "Form8";
  129. this.Text = "Form8";
  130. ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
  131. this.ResumeLayout(false);
  132. this.PerformLayout();
  133. }
  134. #endregion
  135. private System.Windows.Forms.Button button1;
  136. private System.Windows.Forms.OpenFileDialog openFileDialog1;
  137. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  138. private System.Windows.Forms.TextBox textBox1;
  139. private System.Windows.Forms.Button button2;
  140. private System.Windows.Forms.Button button3;
  141. private System.Windows.Forms.FontDialog fontDialog1;
  142. private System.Windows.Forms.Button button4;
  143. private System.Windows.Forms.ErrorProvider errorProvider1;
  144. private System.Windows.Forms.TextBox ageBox;
  145. private System.Windows.Forms.TextBox nameBox;
  146. }
  147. }