namespace StuMgmClient
{
partial class StudentTree
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.StudenTree = new System.Windows.Forms.TreeView();
this.dgvStudent = new System.Windows.Forms.DataGridView();
this.任务名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.操作 = new System.Windows.Forms.DataGridViewButtonColumn();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvStudent)).BeginInit();
this.SuspendLayout();
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 70F));
this.tableLayoutPanel1.Controls.Add(this.StudenTree, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.dgvStudent, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(674, 438);
this.tableLayoutPanel1.TabIndex = 8;
//
// StudenTree
//
this.StudenTree.BackColor = System.Drawing.Color.LightGray;
this.StudenTree.Dock = System.Windows.Forms.DockStyle.Fill;
this.StudenTree.ItemHeight = 25;
this.StudenTree.Location = new System.Drawing.Point(3, 3);
this.StudenTree.Name = "StudenTree";
this.StudenTree.Size = new System.Drawing.Size(196, 432);
this.StudenTree.TabIndex = 4;
this.StudenTree.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.StudentTree_NodeMouseClick);
//
// dgvStudent
//
this.dgvStudent.AllowUserToResizeColumns = false;
this.dgvStudent.AllowUserToResizeRows = false;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
this.dgvStudent.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.dgvStudent.BackgroundColor = System.Drawing.Color.Gainsboro;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle2.BackColor = System.Drawing.Color.CornflowerBlue;
dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle2.ForeColor = System.Drawing.Color.DarkSlateGray;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
this.dgvStudent.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.dgvStudent.ColumnHeadersHeight = 40;
this.dgvStudent.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.任务名称,
this.操作});
this.dgvStudent.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvStudent.EnableHeadersVisualStyles = false;
this.dgvStudent.Location = new System.Drawing.Point(205, 3);
this.dgvStudent.MultiSelect = false;
this.dgvStudent.Name = "dgvStudent";
dataGridViewCellStyle5.BackColor = System.Drawing.Color.WhiteSmoke;
dataGridViewCellStyle5.ForeColor = System.Drawing.Color.Black;
dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.WhiteSmoke;
this.dgvStudent.RowsDefaultCellStyle = dataGridViewCellStyle5;
this.dgvStudent.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.dgvStudent.RowTemplate.DefaultCellStyle.SelectionBackColor = System.Drawing.SystemColors.Highlight;
this.dgvStudent.RowTemplate.DefaultCellStyle.SelectionForeColor = System.Drawing.Color.WhiteSmoke;
this.dgvStudent.RowTemplate.Height = 33;
this.dgvStudent.RowTemplate.ReadOnly = true;
this.dgvStudent.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
this.dgvStudent.Size = new System.Drawing.Size(466, 432);
this.dgvStudent.TabIndex = 1;
this.dgvStudent.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgvStudent_CellContentClick);
//
// 任务名称
//
this.任务名称.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.任务名称.DataPropertyName = "name";
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9F);
this.任务名称.DefaultCellStyle = dataGridViewCellStyle3;
this.任务名称.HeaderText = "任务名称";
this.任务名称.Name = "任务名称";
//
// 操作
//
this.操作.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle4.BackColor = System.Drawing.Color.DarkSeaGreen;
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle4.ForeColor = System.Drawing.Color.Transparent;
dataGridViewCellStyle4.NullValue = "查看详情";
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.Transparent;
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.Transparent;
this.操作.DefaultCellStyle = dataGridViewCellStyle4;
this.操作.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.操作.HeaderText = "操作";
this.操作.Name = "操作";
this.操作.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.操作.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
this.操作.Text = "";
//
// StudentTree
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "StudentTree";
this.Size = new System.Drawing.Size(674, 438);
this.Load += new System.EventHandler(this.StudentTree_Load);
this.tableLayoutPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvStudent)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TreeView StudenTree;
private System.Windows.Forms.DataGridView dgvStudent;
private System.Windows.Forms.DataGridViewTextBoxColumn 任务名称;
private System.Windows.Forms.DataGridViewButtonColumn 操作;
}
}