Form5.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. 
  2. namespace WindowsFormsApp3
  3. {
  4. partial class Form5
  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.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.tabPage2 = new System.Windows.Forms.TabPage();
  32. this.tabControl1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // tabControl1
  36. //
  37. this.tabControl1.Controls.Add(this.tabPage1);
  38. this.tabControl1.Controls.Add(this.tabPage2);
  39. this.tabControl1.Location = new System.Drawing.Point(12, 12);
  40. this.tabControl1.Name = "tabControl1";
  41. this.tabControl1.SelectedIndex = 0;
  42. this.tabControl1.Size = new System.Drawing.Size(346, 161);
  43. this.tabControl1.TabIndex = 1;
  44. //
  45. // tabPage1
  46. //
  47. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  48. this.tabPage1.Name = "tabPage1";
  49. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  50. this.tabPage1.Size = new System.Drawing.Size(338, 135);
  51. this.tabPage1.TabIndex = 0;
  52. this.tabPage1.Text = "Вкладка1";
  53. this.tabPage1.UseVisualStyleBackColor = true;
  54. //
  55. // tabPage2
  56. //
  57. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  58. this.tabPage2.Name = "tabPage2";
  59. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  60. this.tabPage2.Size = new System.Drawing.Size(192, 74);
  61. this.tabPage2.TabIndex = 1;
  62. this.tabPage2.Text = "Вкладка2";
  63. this.tabPage2.UseVisualStyleBackColor = true;
  64. //
  65. // Form5
  66. //
  67. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  69. this.ClientSize = new System.Drawing.Size(370, 179);
  70. this.Controls.Add(this.tabControl1);
  71. this.Name = "Form5";
  72. this.Text = "TabControl";
  73. this.tabControl1.ResumeLayout(false);
  74. this.ResumeLayout(false);
  75. }
  76. #endregion
  77. private System.Windows.Forms.TabControl tabControl1;
  78. private System.Windows.Forms.TabPage tabPage1;
  79. private System.Windows.Forms.TabPage tabPage2;
  80. }
  81. }