init: 导入项目到 meswork Gitea
This commit is contained in:
166
MisData_3.0_2022.08.23.1622.LLX/MisDataBak/MisMenuFunction/Windows/AssemblyManagement.Designer.cs
generated
Normal file
166
MisData_3.0_2022.08.23.1622.LLX/MisDataBak/MisMenuFunction/Windows/AssemblyManagement.Designer.cs
generated
Normal file
@@ -0,0 +1,166 @@
|
||||
namespace MisDataName
|
||||
{
|
||||
partial class AssemblyManagement
|
||||
{
|
||||
/// <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.listView_Assembly = new System.Windows.Forms.ListView();
|
||||
this.columnHeader_Id = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.columnHeader_FunctionName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.columnHeader_AssemblyName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.button_AddAssembly = new System.Windows.Forms.Button();
|
||||
this.openFileDialog_OpenAssembly = new System.Windows.Forms.OpenFileDialog();
|
||||
this.button_UpLoad = new System.Windows.Forms.Button();
|
||||
this.button_DownLoad = new System.Windows.Forms.Button();
|
||||
this.button_Exit = new System.Windows.Forms.Button();
|
||||
this.button_Refresh = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// listView_Assembly
|
||||
//
|
||||
this.listView_Assembly.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
||||
this.columnHeader_Id,
|
||||
this.columnHeader_FunctionName,
|
||||
this.columnHeader_AssemblyName});
|
||||
this.listView_Assembly.FullRowSelect = true;
|
||||
this.listView_Assembly.GridLines = true;
|
||||
this.listView_Assembly.Location = new System.Drawing.Point(12, 17);
|
||||
this.listView_Assembly.Name = "listView_Assembly";
|
||||
this.listView_Assembly.Size = new System.Drawing.Size(442, 333);
|
||||
this.listView_Assembly.TabIndex = 0;
|
||||
this.listView_Assembly.UseCompatibleStateImageBehavior = false;
|
||||
this.listView_Assembly.View = System.Windows.Forms.View.Details;
|
||||
//
|
||||
// columnHeader_Id
|
||||
//
|
||||
this.columnHeader_Id.Text = "序号";
|
||||
this.columnHeader_Id.Width = 50;
|
||||
//
|
||||
// columnHeader_FunctionName
|
||||
//
|
||||
this.columnHeader_FunctionName.Text = "服务对象";
|
||||
this.columnHeader_FunctionName.Width = 100;
|
||||
//
|
||||
// columnHeader_AssemblyName
|
||||
//
|
||||
this.columnHeader_AssemblyName.Text = "程序集名称";
|
||||
this.columnHeader_AssemblyName.Width = 280;
|
||||
//
|
||||
// button_AddAssembly
|
||||
//
|
||||
this.button_AddAssembly.Location = new System.Drawing.Point(475, 17);
|
||||
this.button_AddAssembly.Name = "button_AddAssembly";
|
||||
this.button_AddAssembly.Size = new System.Drawing.Size(97, 39);
|
||||
this.button_AddAssembly.TabIndex = 0;
|
||||
this.button_AddAssembly.Text = "添加程序集";
|
||||
this.button_AddAssembly.UseVisualStyleBackColor = true;
|
||||
this.button_AddAssembly.Click += new System.EventHandler(this.button_AddAssembly_Click);
|
||||
//
|
||||
// openFileDialog_OpenAssembly
|
||||
//
|
||||
this.openFileDialog_OpenAssembly.Filter = "*.dll|";
|
||||
this.openFileDialog_OpenAssembly.Title = "OpenAssemblyFile";
|
||||
this.openFileDialog_OpenAssembly.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog_OpenAssembly_FileOk);
|
||||
//
|
||||
// button_UpLoad
|
||||
//
|
||||
this.button_UpLoad.Location = new System.Drawing.Point(475, 75);
|
||||
this.button_UpLoad.Name = "button_UpLoad";
|
||||
this.button_UpLoad.Size = new System.Drawing.Size(97, 39);
|
||||
this.button_UpLoad.TabIndex = 0;
|
||||
this.button_UpLoad.Text = "装载程序集";
|
||||
this.button_UpLoad.UseVisualStyleBackColor = true;
|
||||
this.button_UpLoad.Click += new System.EventHandler(this.button_UpLoad_Click);
|
||||
//
|
||||
// button_DownLoad
|
||||
//
|
||||
this.button_DownLoad.Location = new System.Drawing.Point(475, 133);
|
||||
this.button_DownLoad.Name = "button_DownLoad";
|
||||
this.button_DownLoad.Size = new System.Drawing.Size(97, 39);
|
||||
this.button_DownLoad.TabIndex = 0;
|
||||
this.button_DownLoad.Text = "卸载程序集";
|
||||
this.button_DownLoad.UseVisualStyleBackColor = true;
|
||||
this.button_DownLoad.Click += new System.EventHandler(this.button_DownLoad_Click);
|
||||
//
|
||||
// button_Exit
|
||||
//
|
||||
this.button_Exit.Location = new System.Drawing.Point(475, 307);
|
||||
this.button_Exit.Name = "button_Exit";
|
||||
this.button_Exit.Size = new System.Drawing.Size(97, 39);
|
||||
this.button_Exit.TabIndex = 0;
|
||||
this.button_Exit.Text = "离开";
|
||||
this.button_Exit.UseVisualStyleBackColor = true;
|
||||
this.button_Exit.Click += new System.EventHandler(this.button_Exit_Click);
|
||||
//
|
||||
// button_Refresh
|
||||
//
|
||||
this.button_Refresh.Location = new System.Drawing.Point(475, 191);
|
||||
this.button_Refresh.Name = "button_Refresh";
|
||||
this.button_Refresh.Size = new System.Drawing.Size(97, 39);
|
||||
this.button_Refresh.TabIndex = 0;
|
||||
this.button_Refresh.Text = "刷新列表";
|
||||
this.button_Refresh.UseVisualStyleBackColor = true;
|
||||
this.button_Refresh.Click += new System.EventHandler(this.button_Refresh_Click);
|
||||
//
|
||||
// AssemblyManagement
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(584, 362);
|
||||
this.Controls.Add(this.listView_Assembly);
|
||||
this.Controls.Add(this.button_Exit);
|
||||
this.Controls.Add(this.button_Refresh);
|
||||
this.Controls.Add(this.button_DownLoad);
|
||||
this.Controls.Add(this.button_UpLoad);
|
||||
this.Controls.Add(this.button_AddAssembly);
|
||||
this.MaximizeBox = false;
|
||||
this.MaximumSize = new System.Drawing.Size(600, 400);
|
||||
this.MinimizeBox = false;
|
||||
this.MinimumSize = new System.Drawing.Size(600, 400);
|
||||
this.Name = "AssemblyManagement";
|
||||
this.ShowIcon = false;
|
||||
this.ShowInTaskbar = false;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "程序集管理";
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.ListView listView_Assembly;
|
||||
private System.Windows.Forms.Button button_AddAssembly;
|
||||
private System.Windows.Forms.OpenFileDialog openFileDialog_OpenAssembly;
|
||||
private System.Windows.Forms.Button button_UpLoad;
|
||||
private System.Windows.Forms.Button button_DownLoad;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader_Id;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader_AssemblyName;
|
||||
private System.Windows.Forms.ColumnHeader columnHeader_FunctionName;
|
||||
private System.Windows.Forms.Button button_Exit;
|
||||
private System.Windows.Forms.Button button_Refresh;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user