tijian_jichuang/Code/BasicSettings/frmAddModules.Designer.cs
2025-02-20 11:54:48 +08:00

182 lines
8.3 KiB
C#

namespace SOH.BasicSettings
{
partial class frmAddModules
{
/// <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.panel1 = new System.Windows.Forms.Panel();
this.btn_insert = new System.Windows.Forms.Button();
this.btn_load = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.col_assid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_assname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_lastupdatetime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_moduleid = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_dllname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_modulename = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.col_fullname = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.btn_insert);
this.panel1.Controls.Add(this.btn_load);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 218);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(821, 43);
this.panel1.TabIndex = 0;
//
// btn_insert
//
this.btn_insert.Location = new System.Drawing.Point(108, 8);
this.btn_insert.Name = "btn_insert";
this.btn_insert.Size = new System.Drawing.Size(75, 23);
this.btn_insert.TabIndex = 1;
this.btn_insert.Text = "安装";
this.btn_insert.UseVisualStyleBackColor = true;
this.btn_insert.Click += new System.EventHandler(this.btn_insert_Click);
//
// btn_load
//
this.btn_load.Location = new System.Drawing.Point(12, 8);
this.btn_load.Name = "btn_load";
this.btn_load.Size = new System.Drawing.Size(75, 23);
this.btn_load.TabIndex = 0;
this.btn_load.Text = "加载";
this.btn_load.UseVisualStyleBackColor = true;
this.btn_load.Click += new System.EventHandler(this.btn_load_Click);
//
// dataGridView1
//
this.dataGridView1.AllowUserToAddRows = false;
this.dataGridView1.AllowUserToDeleteRows = false;
this.dataGridView1.AllowUserToResizeColumns = false;
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.col_assid,
this.col_assname,
this.col_lastupdatetime,
this.col_moduleid,
this.col_dllname,
this.col_modulename,
this.col_fullname});
this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView1.Location = new System.Drawing.Point(0, 0);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.ReadOnly = true;
this.dataGridView1.RowTemplate.Height = 23;
this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView1.Size = new System.Drawing.Size(821, 218);
this.dataGridView1.TabIndex = 1;
//
// col_assid
//
this.col_assid.DataPropertyName = "assid";
this.col_assid.HeaderText = "程序集ID";
this.col_assid.Name = "col_assid";
this.col_assid.ReadOnly = true;
//
// col_assname
//
this.col_assname.DataPropertyName = "assname";
this.col_assname.HeaderText = "程序集名称";
this.col_assname.Name = "col_assname";
this.col_assname.ReadOnly = true;
//
// col_lastupdatetime
//
this.col_lastupdatetime.DataPropertyName = "lastupdatetime";
this.col_lastupdatetime.HeaderText = "程序集最后修改时间";
this.col_lastupdatetime.Name = "col_lastupdatetime";
this.col_lastupdatetime.ReadOnly = true;
//
// col_moduleid
//
this.col_moduleid.DataPropertyName = "moduleid";
this.col_moduleid.HeaderText = "模块ID";
this.col_moduleid.Name = "col_moduleid";
this.col_moduleid.ReadOnly = true;
//
// col_dllname
//
this.col_dllname.DataPropertyName = "dllname";
this.col_dllname.HeaderText = "DLL文件";
this.col_dllname.Name = "col_dllname";
this.col_dllname.ReadOnly = true;
//
// col_modulename
//
this.col_modulename.DataPropertyName = "modulename";
this.col_modulename.HeaderText = "模块名称";
this.col_modulename.Name = "col_modulename";
this.col_modulename.ReadOnly = true;
//
// col_fullname
//
this.col_fullname.DataPropertyName = "fullname";
this.col_fullname.HeaderText = "类名";
this.col_fullname.Name = "col_fullname";
this.col_fullname.ReadOnly = true;
//
// frmAddModules
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(821, 261);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.panel1);
this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Name = "frmAddModules";
this.Text = "加载程序模块";
this.Load += new System.EventHandler(this.frmAddModules_Load);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button btn_insert;
private System.Windows.Forms.Button btn_load;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.DataGridViewTextBoxColumn col_assid;
private System.Windows.Forms.DataGridViewTextBoxColumn col_assname;
private System.Windows.Forms.DataGridViewTextBoxColumn col_lastupdatetime;
private System.Windows.Forms.DataGridViewTextBoxColumn col_moduleid;
private System.Windows.Forms.DataGridViewTextBoxColumn col_dllname;
private System.Windows.Forms.DataGridViewTextBoxColumn col_modulename;
private System.Windows.Forms.DataGridViewTextBoxColumn col_fullname;
}
}