📄 frmsametable.designer.cs
字号:
namespace BDCS.DataBaseInformation
{
partial class frmSameTable
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSameTable));
this.panBottom = new System.Windows.Forms.Panel();
this.lblAggr = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.tvObject = new System.Windows.Forms.TreeView();
this.ilImage = new System.Windows.Forms.ImageList(this.components);
this.splitter1 = new System.Windows.Forms.Splitter();
this.lvObject = new System.Windows.Forms.ListView();
this.panBottom.SuspendLayout();
this.SuspendLayout();
//
// panBottom
//
this.panBottom.Controls.Add(this.lblAggr);
this.panBottom.Controls.Add(this.btnCancel);
this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panBottom.Location = new System.Drawing.Point(0, 376);
this.panBottom.Name = "panBottom";
this.panBottom.Size = new System.Drawing.Size(722, 47);
this.panBottom.TabIndex = 0;
this.panBottom.Paint += new System.Windows.Forms.PaintEventHandler(this.panBottom_Paint);
//
// lblAggr
//
this.lblAggr.AutoSize = true;
this.lblAggr.ForeColor = System.Drawing.Color.Blue;
this.lblAggr.Location = new System.Drawing.Point(12, 17);
this.lblAggr.Name = "lblAggr";
this.lblAggr.Size = new System.Drawing.Size(0, 12);
this.lblAggr.TabIndex = 9;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(635, 12);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 8;
this.btnCancel.Text = "关闭(&C)";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// tvObject
//
this.tvObject.Dock = System.Windows.Forms.DockStyle.Left;
this.tvObject.ImageIndex = 0;
this.tvObject.ImageList = this.ilImage;
this.tvObject.Location = new System.Drawing.Point(0, 0);
this.tvObject.Name = "tvObject";
this.tvObject.SelectedImageIndex = 0;
this.tvObject.Size = new System.Drawing.Size(202, 376);
this.tvObject.TabIndex = 6;
this.tvObject.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvObject_AfterSelect);
//
// ilImage
//
this.ilImage.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilImage.ImageStream")));
this.ilImage.TransparentColor = System.Drawing.Color.Transparent;
this.ilImage.Images.SetKeyName(0, "database.gif");
this.ilImage.Images.SetKeyName(1, "table.gif");
this.ilImage.Images.SetKeyName(2, "field.gif");
this.ilImage.Images.SetKeyName(3, "key.gif");
//
// splitter1
//
this.splitter1.Location = new System.Drawing.Point(202, 0);
this.splitter1.Name = "splitter1";
this.splitter1.Size = new System.Drawing.Size(3, 376);
this.splitter1.TabIndex = 7;
this.splitter1.TabStop = false;
//
// lvObject
//
this.lvObject.Dock = System.Windows.Forms.DockStyle.Fill;
this.lvObject.FullRowSelect = true;
this.lvObject.Location = new System.Drawing.Point(205, 0);
this.lvObject.Name = "lvObject";
this.lvObject.Size = new System.Drawing.Size(517, 376);
this.lvObject.TabIndex = 8;
this.lvObject.UseCompatibleStateImageBehavior = false;
this.lvObject.View = System.Windows.Forms.View.Details;
//
// frmSameTable
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(722, 423);
this.Controls.Add(this.lvObject);
this.Controls.Add(this.splitter1);
this.Controls.Add(this.tvObject);
this.Controls.Add(this.panBottom);
this.Name = "frmSameTable";
this.Text = "具有相同字段的表";
this.Load += new System.EventHandler(this.frmSameTable_Load);
this.panBottom.ResumeLayout(false);
this.panBottom.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panBottom;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.TreeView tvObject;
private System.Windows.Forms.Splitter splitter1;
private System.Windows.Forms.ListView lvObject;
private System.Windows.Forms.ImageList ilImage;
private System.Windows.Forms.Label lblAggr;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -