代码拉取完成,页面将自动刷新
namespace CodeGenerator.UI
{
partial class FrmSelectTable
{
/// <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.btn_OK = new System.Windows.Forms.Button();
this.btn_Cancel = new System.Windows.Forms.Button();
this.btn_RightMoveAll = new System.Windows.Forms.Button();
this.btn_RightMove = new System.Windows.Forms.Button();
this.btn_LeftMove = new System.Windows.Forms.Button();
this.btn_LeftMoveAll = new System.Windows.Forms.Button();
this.lst_Info = new System.Windows.Forms.ListBox();
this.lst_UseInfo = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// btn_OK
//
this.btn_OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_OK.Location = new System.Drawing.Point(284, 414);
this.btn_OK.Name = "btn_OK";
this.btn_OK.Size = new System.Drawing.Size(75, 28);
this.btn_OK.TabIndex = 2;
this.btn_OK.Text = "确定";
this.btn_OK.UseVisualStyleBackColor = true;
this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
//
// btn_Cancel
//
this.btn_Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_Cancel.Location = new System.Drawing.Point(380, 414);
this.btn_Cancel.Name = "btn_Cancel";
this.btn_Cancel.Size = new System.Drawing.Size(75, 28);
this.btn_Cancel.TabIndex = 3;
this.btn_Cancel.Text = "取消";
this.btn_Cancel.UseVisualStyleBackColor = true;
this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
//
// btn_RightMoveAll
//
this.btn_RightMoveAll.Location = new System.Drawing.Point(217, 48);
this.btn_RightMoveAll.Name = "btn_RightMoveAll";
this.btn_RightMoveAll.Size = new System.Drawing.Size(44, 23);
this.btn_RightMoveAll.TabIndex = 4;
this.btn_RightMoveAll.Text = ">>";
this.btn_RightMoveAll.UseVisualStyleBackColor = true;
this.btn_RightMoveAll.Click += new System.EventHandler(this.btn_RightMoveAll_Click);
//
// btn_RightMove
//
this.btn_RightMove.Location = new System.Drawing.Point(217, 99);
this.btn_RightMove.Name = "btn_RightMove";
this.btn_RightMove.Size = new System.Drawing.Size(44, 23);
this.btn_RightMove.TabIndex = 4;
this.btn_RightMove.Text = ">";
this.btn_RightMove.UseVisualStyleBackColor = true;
this.btn_RightMove.Click += new System.EventHandler(this.btn_RightMove_Click);
//
// btn_LeftMove
//
this.btn_LeftMove.Location = new System.Drawing.Point(218, 153);
this.btn_LeftMove.Name = "btn_LeftMove";
this.btn_LeftMove.Size = new System.Drawing.Size(44, 23);
this.btn_LeftMove.TabIndex = 4;
this.btn_LeftMove.Text = "<";
this.btn_LeftMove.UseVisualStyleBackColor = true;
this.btn_LeftMove.Click += new System.EventHandler(this.btn_LeftMove_Click);
//
// btn_LeftMoveAll
//
this.btn_LeftMoveAll.Location = new System.Drawing.Point(218, 206);
this.btn_LeftMoveAll.Name = "btn_LeftMoveAll";
this.btn_LeftMoveAll.Size = new System.Drawing.Size(44, 23);
this.btn_LeftMoveAll.TabIndex = 4;
this.btn_LeftMoveAll.Text = "<<";
this.btn_LeftMoveAll.UseVisualStyleBackColor = true;
this.btn_LeftMoveAll.Click += new System.EventHandler(this.btn_LeftMoveAll_Click);
//
// lst_Info
//
this.lst_Info.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.lst_Info.FormattingEnabled = true;
this.lst_Info.ItemHeight = 12;
this.lst_Info.Location = new System.Drawing.Point(13, 12);
this.lst_Info.Name = "lst_Info";
this.lst_Info.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
this.lst_Info.Size = new System.Drawing.Size(199, 376);
this.lst_Info.TabIndex = 0;
this.lst_Info.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lst_Info_MouseDoubleClick);
//
// lst_UseInfo
//
this.lst_UseInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lst_UseInfo.FormattingEnabled = true;
this.lst_UseInfo.ItemHeight = 12;
this.lst_UseInfo.Location = new System.Drawing.Point(267, 12);
this.lst_UseInfo.Name = "lst_UseInfo";
this.lst_UseInfo.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
this.lst_UseInfo.Size = new System.Drawing.Size(199, 376);
this.lst_UseInfo.TabIndex = 5;
this.lst_UseInfo.SelectedIndexChanged += new System.EventHandler(this.lst_UseInfo_SelectedIndexChanged);
//
// FrmSelectTable
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(482, 452);
this.Controls.Add(this.lst_UseInfo);
this.Controls.Add(this.btn_LeftMoveAll);
this.Controls.Add(this.btn_LeftMove);
this.Controls.Add(this.btn_RightMove);
this.Controls.Add(this.btn_RightMoveAll);
this.Controls.Add(this.btn_Cancel);
this.Controls.Add(this.btn_OK);
this.Controls.Add(this.lst_Info);
this.Name = "FrmSelectTable";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "请选择用于操作的表";
this.Load += new System.EventHandler(this.FrmSelectTable_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btn_OK;
private System.Windows.Forms.Button btn_Cancel;
private System.Windows.Forms.Button btn_RightMoveAll;
private System.Windows.Forms.Button btn_RightMove;
private System.Windows.Forms.Button btn_LeftMove;
private System.Windows.Forms.Button btn_LeftMoveAll;
private System.Windows.Forms.ListBox lst_Info;
private System.Windows.Forms.ListBox lst_UseInfo;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。