Form1.Designer.cs 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace WindowsFormsTabControl
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.tabControl1 = new System.Windows.Forms.TabControl();
  31. this.tabPage1 = new System.Windows.Forms.TabPage();
  32. this.tabPage2 = new System.Windows.Forms.TabPage();
  33. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  34. this.tabControl1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // tabControl1
  38. //
  39. this.tabControl1.Controls.Add(this.tabPage1);
  40. this.tabControl1.Controls.Add(this.tabPage2);
  41. this.tabControl1.Location = new System.Drawing.Point(13, 41);
  42. this.tabControl1.Name = "tabControl1";
  43. this.tabControl1.SelectedIndex = 0;
  44. this.tabControl1.Size = new System.Drawing.Size(380, 202);
  45. this.tabControl1.TabIndex = 0;
  46. //
  47. // tabPage1
  48. //
  49. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  50. this.tabPage1.Name = "tabPage1";
  51. this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  52. this.tabPage1.Size = new System.Drawing.Size(372, 173);
  53. this.tabPage1.TabIndex = 0;
  54. this.tabPage1.Text = "tabPage1";
  55. this.tabPage1.UseVisualStyleBackColor = true;
  56. //
  57. // tabPage2
  58. //
  59. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  60. this.tabPage2.Name = "tabPage2";
  61. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  62. this.tabPage2.Size = new System.Drawing.Size(372, 173);
  63. this.tabPage2.TabIndex = 1;
  64. this.tabPage2.Text = "tabPage2";
  65. this.tabPage2.UseVisualStyleBackColor = true;
  66. //
  67. // imageList1
  68. //
  69. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  70. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  71. this.imageList1.Images.SetKeyName(0, "home.png");
  72. //
  73. // Form1
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.ClientSize = new System.Drawing.Size(402, 301);
  78. this.Controls.Add(this.tabControl1);
  79. this.Name = "Form1";
  80. this.Text = "Form1";
  81. this.Load += new System.EventHandler(this.Form1_Load);
  82. this.tabControl1.ResumeLayout(false);
  83. this.ResumeLayout(false);
  84. }
  85. #endregion
  86. private System.Windows.Forms.TabControl tabControl1;
  87. private System.Windows.Forms.TabPage tabPage1;
  88. private System.Windows.Forms.TabPage tabPage2;
  89. private System.Windows.Forms.ImageList imageList1;
  90. }
  91. }