Form3.Designer.cs 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 
  2. namespace prakrika3
  3. {
  4. partial class Form3
  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(131, 52);
  40. this.tabControl1.Name = "tabControl1";
  41. this.tabControl1.SelectedIndex = 0;
  42. this.tabControl1.Size = new System.Drawing.Size(200, 100);
  43. this.tabControl1.TabIndex = 0;
  44. //
  45. // tabPage1
  46. //
  47. this.tabPage1.Location = new System.Drawing.Point(4, 24);
  48. this.tabPage1.Name = "tabPage1";
  49. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  50. this.tabPage1.Size = new System.Drawing.Size(192, 72);
  51. this.tabPage1.TabIndex = 0;
  52. this.tabPage1.Text = "tabPage1";
  53. this.tabPage1.UseVisualStyleBackColor = true;
  54. this.tabPage1.Click += new System.EventHandler(this.tabPage1_Click);
  55. //
  56. // tabPage2
  57. //
  58. this.tabPage2.Location = new System.Drawing.Point(4, 24);
  59. this.tabPage2.Name = "tabPage2";
  60. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  61. this.tabPage2.Size = new System.Drawing.Size(192, 72);
  62. this.tabPage2.TabIndex = 1;
  63. this.tabPage2.Text = "tabPage2";
  64. this.tabPage2.UseVisualStyleBackColor = true;
  65. //
  66. // Form3
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(800, 450);
  71. this.Controls.Add(this.tabControl1);
  72. this.Name = "Form3";
  73. this.Text = "Form3";
  74. this.tabControl1.ResumeLayout(false);
  75. this.ResumeLayout(false);
  76. }
  77. #endregion
  78. private System.Windows.Forms.TabControl tabControl1;
  79. private System.Windows.Forms.TabPage tabPage1;
  80. private System.Windows.Forms.TabPage tabPage2;
  81. }
  82. }