📄 frmmain.designer.cs
字号:
namespace TrainsitionApp
{
partial class frmMain
{
/// <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.pbStat = new System.Windows.Forms.ProgressBar();
this.btnBegin = new System.Windows.Forms.Button();
this.lblMsg = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.bgWorker = new System.ComponentModel.BackgroundWorker();
this.btnNext = new System.Windows.Forms.Button();
this.lblState = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// pbStat
//
this.pbStat.Location = new System.Drawing.Point(12, 56);
this.pbStat.Name = "pbStat";
this.pbStat.Size = new System.Drawing.Size(480, 23);
this.pbStat.TabIndex = 0;
//
// btnBegin
//
this.btnBegin.Location = new System.Drawing.Point(70, 94);
this.btnBegin.Name = "btnBegin";
this.btnBegin.Size = new System.Drawing.Size(75, 23);
this.btnBegin.TabIndex = 1;
this.btnBegin.Text = "开 始";
this.btnBegin.UseVisualStyleBackColor = true;
this.btnBegin.Click += new System.EventHandler(this.btnBegin_Click);
//
// lblMsg
//
this.lblMsg.AutoSize = true;
this.lblMsg.Location = new System.Drawing.Point(10, 26);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(0, 12);
this.lblMsg.TabIndex = 2;
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(379, 94);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "取 消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// bgWorker
//
this.bgWorker.WorkerReportsProgress = true;
this.bgWorker.WorkerSupportsCancellation = true;
this.bgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgWorker_DoWork);
this.bgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgWorker_RunWorkerCompleted);
this.bgWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgWorker_ProgressChanged);
//
// btnNext
//
this.btnNext.Enabled = false;
this.btnNext.Location = new System.Drawing.Point(226, 94);
this.btnNext.Name = "btnNext";
this.btnNext.Size = new System.Drawing.Size(75, 23);
this.btnNext.TabIndex = 5;
this.btnNext.Text = "下一步";
this.btnNext.UseVisualStyleBackColor = true;
this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
//
// lblState
//
this.lblState.AutoSize = true;
this.lblState.Location = new System.Drawing.Point(12, 9);
this.lblState.Name = "lblState";
this.lblState.Size = new System.Drawing.Size(0, 12);
this.lblState.TabIndex = 6;
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(504, 142);
this.Controls.Add(this.lblState);
this.Controls.Add(this.btnNext);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.lblMsg);
this.Controls.Add(this.btnBegin);
this.Controls.Add(this.pbStat);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "考试中心数据导入程序";
this.Load += new System.EventHandler(this.frmUser_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ProgressBar pbStat;
private System.Windows.Forms.Button btnBegin;
private System.Windows.Forms.Label lblMsg;
private System.Windows.Forms.Button btnCancel;
private System.ComponentModel.BackgroundWorker bgWorker;
private System.Windows.Forms.Button btnNext;
private System.Windows.Forms.Label lblState;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -