tijian_jichuang/Code/BasicSettings/frmMenuSet.Designer.cs

233 lines
10 KiB
C#
Raw Normal View History

2025-02-20 11:54:48 +08:00
namespace SOH.BasicSettings
{
partial class frmMenuSet
{
/// <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.components = new System.ComponentModel.Container();
this.pantop = new System.Windows.Forms.Panel();
this.btn_del = new System.Windows.Forms.Button();
this.btn_modify = new System.Windows.Forms.Button();
this.btn_add = new System.Windows.Forms.Button();
this.panLeft = new System.Windows.Forms.Panel();
this.tv_parent = new System.Windows.Forms.TreeView();
this.cm = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsm_xg = new System.Windows.Forms.ToolStripMenuItem();
this.dgvMenuInfo = new System.Windows.Forms.DataGridView();
this.colMenuName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colassid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colassName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colmoduleid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colModuleName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colopenstyle = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.pantop.SuspendLayout();
this.panLeft.SuspendLayout();
this.cm.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvMenuInfo)).BeginInit();
this.SuspendLayout();
//
// pantop
//
this.pantop.Controls.Add(this.btn_del);
this.pantop.Controls.Add(this.btn_modify);
this.pantop.Controls.Add(this.btn_add);
this.pantop.Dock = System.Windows.Forms.DockStyle.Top;
this.pantop.Location = new System.Drawing.Point(0, 0);
this.pantop.Name = "pantop";
this.pantop.Size = new System.Drawing.Size(827, 45);
this.pantop.TabIndex = 0;
//
// btn_del
//
this.btn_del.Location = new System.Drawing.Point(175, 13);
this.btn_del.Name = "btn_del";
this.btn_del.Size = new System.Drawing.Size(75, 23);
this.btn_del.TabIndex = 2;
this.btn_del.Text = "删除";
this.btn_del.UseVisualStyleBackColor = true;
this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
//
// btn_modify
//
this.btn_modify.Location = new System.Drawing.Point(94, 13);
this.btn_modify.Name = "btn_modify";
this.btn_modify.Size = new System.Drawing.Size(75, 23);
this.btn_modify.TabIndex = 1;
this.btn_modify.Text = "修改";
this.btn_modify.UseVisualStyleBackColor = true;
this.btn_modify.Click += new System.EventHandler(this.btn_modify_Click);
//
// btn_add
//
this.btn_add.Location = new System.Drawing.Point(13, 13);
this.btn_add.Name = "btn_add";
this.btn_add.Size = new System.Drawing.Size(75, 23);
this.btn_add.TabIndex = 0;
this.btn_add.Text = "添加";
this.btn_add.UseVisualStyleBackColor = true;
this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
//
// panLeft
//
this.panLeft.Controls.Add(this.tv_parent);
this.panLeft.Dock = System.Windows.Forms.DockStyle.Left;
this.panLeft.Location = new System.Drawing.Point(0, 45);
this.panLeft.Name = "panLeft";
this.panLeft.Size = new System.Drawing.Size(167, 352);
this.panLeft.TabIndex = 1;
//
// tv_parent
//
this.tv_parent.ContextMenuStrip = this.cm;
this.tv_parent.Dock = System.Windows.Forms.DockStyle.Fill;
this.tv_parent.Location = new System.Drawing.Point(0, 0);
this.tv_parent.Name = "tv_parent";
this.tv_parent.Size = new System.Drawing.Size(167, 352);
this.tv_parent.TabIndex = 0;
this.tv_parent.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tv_parent_AfterSelect);
//
// cm
//
this.cm.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsm_xg});
this.cm.Name = "cm";
this.cm.Size = new System.Drawing.Size(101, 26);
//
// tsm_xg
//
this.tsm_xg.Name = "tsm_xg";
this.tsm_xg.Size = new System.Drawing.Size(152, 22);
this.tsm_xg.Text = "修改";
this.tsm_xg.Click += new System.EventHandler(this.tsm_xg_Click);
//
// dgvMenuInfo
//
this.dgvMenuInfo.AllowUserToAddRows = false;
this.dgvMenuInfo.AllowUserToDeleteRows = false;
this.dgvMenuInfo.AllowUserToResizeColumns = false;
this.dgvMenuInfo.AllowUserToResizeRows = false;
this.dgvMenuInfo.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgvMenuInfo.BackgroundColor = System.Drawing.Color.White;
this.dgvMenuInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvMenuInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colMenuName,
this.colassid,
this.colassName,
this.colmoduleid,
this.colModuleName,
this.colopenstyle});
this.dgvMenuInfo.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvMenuInfo.Location = new System.Drawing.Point(167, 45);
this.dgvMenuInfo.MultiSelect = false;
this.dgvMenuInfo.Name = "dgvMenuInfo";
this.dgvMenuInfo.ReadOnly = true;
this.dgvMenuInfo.RowTemplate.Height = 23;
this.dgvMenuInfo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvMenuInfo.Size = new System.Drawing.Size(660, 352);
this.dgvMenuInfo.TabIndex = 2;
//
// colMenuName
//
this.colMenuName.DataPropertyName = "mname";
this.colMenuName.HeaderText = "菜单名称";
this.colMenuName.Name = "colMenuName";
this.colMenuName.ReadOnly = true;
//
// colassid
//
this.colassid.DataPropertyName = "assid";
this.colassid.HeaderText = "程序集ID";
this.colassid.Name = "colassid";
this.colassid.ReadOnly = true;
//
// colassName
//
this.colassName.DataPropertyName = "assname";
this.colassName.HeaderText = "程序集名称";
this.colassName.Name = "colassName";
this.colassName.ReadOnly = true;
//
// colmoduleid
//
this.colmoduleid.DataPropertyName = "mkid";
this.colmoduleid.HeaderText = "模块ID";
this.colmoduleid.Name = "colmoduleid";
this.colmoduleid.ReadOnly = true;
//
// colModuleName
//
this.colModuleName.DataPropertyName = "mkname";
this.colModuleName.HeaderText = "模块名称";
this.colModuleName.Name = "colModuleName";
this.colModuleName.ReadOnly = true;
//
// colopenstyle
//
this.colopenstyle.DataPropertyName = "opentype";
this.colopenstyle.HeaderText = "打开方式";
this.colopenstyle.Name = "colopenstyle";
this.colopenstyle.ReadOnly = true;
//
// frmMenuSet
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(827, 397);
this.Controls.Add(this.dgvMenuInfo);
this.Controls.Add(this.panLeft);
this.Controls.Add(this.pantop);
this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Name = "frmMenuSet";
this.Text = "菜单维护";
this.Load += new System.EventHandler(this.frmMenuSet_Load);
this.pantop.ResumeLayout(false);
this.panLeft.ResumeLayout(false);
this.cm.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvMenuInfo)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pantop;
private System.Windows.Forms.Panel panLeft;
private System.Windows.Forms.DataGridView dgvMenuInfo;
private System.Windows.Forms.TreeView tv_parent;
private System.Windows.Forms.Button btn_del;
private System.Windows.Forms.Button btn_modify;
private System.Windows.Forms.Button btn_add;
private System.Windows.Forms.DataGridViewTextBoxColumn colMenuName;
private System.Windows.Forms.DataGridViewTextBoxColumn colassid;
private System.Windows.Forms.DataGridViewTextBoxColumn colassName;
private System.Windows.Forms.DataGridViewTextBoxColumn colmoduleid;
private System.Windows.Forms.DataGridViewTextBoxColumn colModuleName;
private System.Windows.Forms.DataGridViewTextBoxColumn colopenstyle;
private System.Windows.Forms.ContextMenuStrip cm;
private System.Windows.Forms.ToolStripMenuItem tsm_xg;
}
}