You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
275 lines
13 KiB
C#
275 lines
13 KiB
C#
namespace Mesnac.Gui.Edit.ViewContent
|
|
{
|
|
partial class FrmDataSource
|
|
{
|
|
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.lvDataSource = new System.Windows.Forms.ListView();
|
|
this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colDataDriverName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colServer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colUserName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colPassword = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colDatabase = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.cmsDataSource = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.mnuNewDataSource = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mnuEditDataSource = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mnuDelDataSource = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
|
this.lvDataObjectDetails = new System.Windows.Forms.ListView();
|
|
this.colDetailsName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.lvDataObject = new System.Windows.Forms.ListView();
|
|
this.colDataObjectName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colDataObjectType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.colConnectionTimeout = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.groupBox1.SuspendLayout();
|
|
this.cmsDataSource.SuspendLayout();
|
|
this.groupBox3.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.lvDataSource);
|
|
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.groupBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(824, 149);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "数据源信息";
|
|
//
|
|
// lvDataSource
|
|
//
|
|
this.lvDataSource.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colName,
|
|
this.colDataDriverName,
|
|
this.colServer,
|
|
this.colUserName,
|
|
this.colPassword,
|
|
this.colDatabase,
|
|
this.colConnectionTimeout});
|
|
this.lvDataSource.ContextMenuStrip = this.cmsDataSource;
|
|
this.lvDataSource.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lvDataSource.FullRowSelect = true;
|
|
this.lvDataSource.GridLines = true;
|
|
this.lvDataSource.Location = new System.Drawing.Point(3, 17);
|
|
this.lvDataSource.MultiSelect = false;
|
|
this.lvDataSource.Name = "lvDataSource";
|
|
this.lvDataSource.Size = new System.Drawing.Size(818, 129);
|
|
this.lvDataSource.TabIndex = 0;
|
|
this.lvDataSource.UseCompatibleStateImageBehavior = false;
|
|
this.lvDataSource.View = System.Windows.Forms.View.Details;
|
|
this.lvDataSource.SelectedIndexChanged += new System.EventHandler(this.lvDataSource_SelectedIndexChanged);
|
|
this.lvDataSource.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvDataSource_MouseDoubleClick);
|
|
//
|
|
// colName
|
|
//
|
|
this.colName.Text = "名称";
|
|
this.colName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colName.Width = 100;
|
|
//
|
|
// colDataDriverName
|
|
//
|
|
this.colDataDriverName.Text = "数据驱动";
|
|
this.colDataDriverName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colDataDriverName.Width = 160;
|
|
//
|
|
// colServer
|
|
//
|
|
this.colServer.Text = "服务器";
|
|
this.colServer.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colServer.Width = 160;
|
|
//
|
|
// colUserName
|
|
//
|
|
this.colUserName.Text = "用户名";
|
|
this.colUserName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colUserName.Width = 100;
|
|
//
|
|
// colPassword
|
|
//
|
|
this.colPassword.Text = "密码";
|
|
this.colPassword.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colPassword.Width = 100;
|
|
//
|
|
// colDatabase
|
|
//
|
|
this.colDatabase.Text = "数据库";
|
|
this.colDatabase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colDatabase.Width = 120;
|
|
//
|
|
// cmsDataSource
|
|
//
|
|
this.cmsDataSource.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.mnuNewDataSource,
|
|
this.mnuEditDataSource,
|
|
this.mnuDelDataSource});
|
|
this.cmsDataSource.Name = "cmsDataSource";
|
|
this.cmsDataSource.Size = new System.Drawing.Size(101, 70);
|
|
//
|
|
// mnuNewDataSource
|
|
//
|
|
this.mnuNewDataSource.Name = "mnuNewDataSource";
|
|
this.mnuNewDataSource.Size = new System.Drawing.Size(100, 22);
|
|
this.mnuNewDataSource.Text = "新建";
|
|
this.mnuNewDataSource.Click += new System.EventHandler(this.mnuNewDataSource_Click);
|
|
//
|
|
// mnuEditDataSource
|
|
//
|
|
this.mnuEditDataSource.Name = "mnuEditDataSource";
|
|
this.mnuEditDataSource.Size = new System.Drawing.Size(100, 22);
|
|
this.mnuEditDataSource.Text = "编辑";
|
|
this.mnuEditDataSource.Click += new System.EventHandler(this.mnuEditDataSource_Click);
|
|
//
|
|
// mnuDelDataSource
|
|
//
|
|
this.mnuDelDataSource.Name = "mnuDelDataSource";
|
|
this.mnuDelDataSource.Size = new System.Drawing.Size(100, 22);
|
|
this.mnuDelDataSource.Text = "删除";
|
|
this.mnuDelDataSource.Click += new System.EventHandler(this.mnuDelDataSource_Click);
|
|
//
|
|
// groupBox3
|
|
//
|
|
this.groupBox3.Controls.Add(this.lvDataObjectDetails);
|
|
this.groupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.groupBox3.Location = new System.Drawing.Point(0, 267);
|
|
this.groupBox3.Name = "groupBox3";
|
|
this.groupBox3.Size = new System.Drawing.Size(824, 189);
|
|
this.groupBox3.TabIndex = 2;
|
|
this.groupBox3.TabStop = false;
|
|
this.groupBox3.Text = "数据对象详情";
|
|
//
|
|
// lvDataObjectDetails
|
|
//
|
|
this.lvDataObjectDetails.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colDetailsName});
|
|
this.lvDataObjectDetails.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lvDataObjectDetails.FullRowSelect = true;
|
|
this.lvDataObjectDetails.GridLines = true;
|
|
this.lvDataObjectDetails.Location = new System.Drawing.Point(3, 17);
|
|
this.lvDataObjectDetails.Name = "lvDataObjectDetails";
|
|
this.lvDataObjectDetails.Size = new System.Drawing.Size(818, 169);
|
|
this.lvDataObjectDetails.TabIndex = 0;
|
|
this.lvDataObjectDetails.UseCompatibleStateImageBehavior = false;
|
|
this.lvDataObjectDetails.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// colDetailsName
|
|
//
|
|
this.colDetailsName.Text = "名称";
|
|
this.colDetailsName.Width = 200;
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.lvDataObject);
|
|
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.groupBox2.Location = new System.Drawing.Point(0, 149);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(824, 118);
|
|
this.groupBox2.TabIndex = 3;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "数据对象信息";
|
|
//
|
|
// lvDataObject
|
|
//
|
|
this.lvDataObject.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.colDataObjectName,
|
|
this.colDataObjectType});
|
|
this.lvDataObject.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lvDataObject.FullRowSelect = true;
|
|
this.lvDataObject.GridLines = true;
|
|
this.lvDataObject.Location = new System.Drawing.Point(3, 17);
|
|
this.lvDataObject.MultiSelect = false;
|
|
this.lvDataObject.Name = "lvDataObject";
|
|
this.lvDataObject.Size = new System.Drawing.Size(818, 98);
|
|
this.lvDataObject.TabIndex = 0;
|
|
this.lvDataObject.UseCompatibleStateImageBehavior = false;
|
|
this.lvDataObject.View = System.Windows.Forms.View.Details;
|
|
this.lvDataObject.SelectedIndexChanged += new System.EventHandler(this.lvDataObject_SelectedIndexChanged);
|
|
//
|
|
// colDataObjectName
|
|
//
|
|
this.colDataObjectName.Text = "数据对象名称";
|
|
this.colDataObjectName.Width = 200;
|
|
//
|
|
// colDataObjectType
|
|
//
|
|
this.colDataObjectType.Text = "数据对象类型";
|
|
this.colDataObjectType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.colDataObjectType.Width = 300;
|
|
//
|
|
// colConnectionTimeout
|
|
//
|
|
this.colConnectionTimeout.Text = "连接超时";
|
|
//
|
|
// FrmDataSource
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(824, 456);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.groupBox3);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Name = "FrmDataSource";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "数据源管理器";
|
|
this.TitleName = "数据源管理器";
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.cmsDataSource.ResumeLayout(false);
|
|
this.groupBox3.ResumeLayout(false);
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.GroupBox groupBox3;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.ListView lvDataSource;
|
|
private System.Windows.Forms.ListView lvDataObjectDetails;
|
|
private System.Windows.Forms.ListView lvDataObject;
|
|
private System.Windows.Forms.ColumnHeader colName;
|
|
private System.Windows.Forms.ColumnHeader colDataDriverName;
|
|
private System.Windows.Forms.ContextMenuStrip cmsDataSource;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuNewDataSource;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditDataSource;
|
|
private System.Windows.Forms.ToolStripMenuItem mnuDelDataSource;
|
|
private System.Windows.Forms.ColumnHeader colServer;
|
|
private System.Windows.Forms.ColumnHeader colUserName;
|
|
private System.Windows.Forms.ColumnHeader colPassword;
|
|
private System.Windows.Forms.ColumnHeader colDatabase;
|
|
private System.Windows.Forms.ColumnHeader colDataObjectName;
|
|
private System.Windows.Forms.ColumnHeader colDataObjectType;
|
|
private System.Windows.Forms.ColumnHeader colDetailsName;
|
|
private System.Windows.Forms.ColumnHeader colConnectionTimeout;
|
|
}
|
|
} |