|
- using System.Data;
- namespace StuMgmClient
- {
- partial class StudentForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.tlpIndex = new System.Windows.Forms.TableLayoutPanel();
- this.studentNavigation = new StuMgmClient.StudentNavigation();
- this.studentTree = new StuMgmClient.StudentTree();
- this.tlpIndex.SuspendLayout();
- this.SuspendLayout();
- //
- // tlpIndex
- //
- this.tlpIndex.ColumnCount = 2;
- this.tlpIndex.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
- this.tlpIndex.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 80F));
- this.tlpIndex.Controls.Add(this.studentNavigation, 0, 0);
- this.tlpIndex.Controls.Add(this.studentTree, 1, 0);
- this.tlpIndex.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tlpIndex.Location = new System.Drawing.Point(0, 0);
- this.tlpIndex.Name = "tlpIndex";
- this.tlpIndex.RowCount = 1;
- this.tlpIndex.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tlpIndex.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 543F));
- this.tlpIndex.Size = new System.Drawing.Size(1030, 543);
- this.tlpIndex.TabIndex = 6;
- //
- // studentNavigation
- //
- this.studentNavigation.Dock = System.Windows.Forms.DockStyle.Fill;
- this.studentNavigation.Location = new System.Drawing.Point(3, 3);
- this.studentNavigation.Name = "studentNavigation";
- this.studentNavigation.Size = new System.Drawing.Size(200, 537);
- this.studentNavigation.TabIndex = 0;
- //
- // studentTree
- //
- this.studentTree.Dock = System.Windows.Forms.DockStyle.Fill;
- this.studentTree.Location = new System.Drawing.Point(209, 3);
- this.studentTree.Name = "studentTree";
- this.studentTree.Size = new System.Drawing.Size(818, 537);
- this.studentTree.TabIndex = 1;
- //
- // StudentForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1030, 543);
- this.Controls.Add(this.tlpIndex);
- this.Name = "StudentForm";
- this.Text = "学员信息";
- this.Load += new System.EventHandler(this.StudentForm_Load);
- this.tlpIndex.ResumeLayout(false);
- this.ResumeLayout(false);
-
- }
-
- #endregion
-
- private System.Windows.Forms.TableLayoutPanel tlpIndex;
- private StudentNavigation studentNavigation;
- private StudentTree studentTree;
- }
- }
|