📄 form1.designer.cs
字号:
namespace Sql2Excel
{
partial class Form1
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.toolbar = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.ProgressBar = new System.Windows.Forms.ToolStripProgressBar();
this.Prolbl = new System.Windows.Forms.ToolStripLabel();
this.ckltbox = new System.Windows.Forms.CheckedListBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.toolbar.SuspendLayout();
this.SuspendLayout();
//
// toolbar
//
this.toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.ProgressBar,
this.Prolbl});
this.toolbar.Location = new System.Drawing.Point(0, 0);
this.toolbar.Name = "toolbar";
this.toolbar.Size = new System.Drawing.Size(401, 25);
this.toolbar.TabIndex = 0;
this.toolbar.Text = "toolStrip1";
this.toolbar.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolbar_ItemClicked);
//
// toolStripButton1
//
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(57, 22);
this.toolStripButton1.Text = "开始备份";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// ProgressBar
//
this.ProgressBar.Name = "ProgressBar";
this.ProgressBar.Size = new System.Drawing.Size(200, 22);
this.ProgressBar.Step = 5;
this.ProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
//
// Prolbl
//
this.Prolbl.Name = "Prolbl";
this.Prolbl.Size = new System.Drawing.Size(0, 22);
//
// ckltbox
//
this.ckltbox.FormattingEnabled = true;
this.ckltbox.Location = new System.Drawing.Point(12, 40);
this.ckltbox.Name = "ckltbox";
this.ckltbox.Size = new System.Drawing.Size(158, 148);
this.ckltbox.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 194);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(62, 23);
this.button1.TabIndex = 2;
this.button1.Text = "全部选中";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click_1);
//
// button2
//
this.button2.Location = new System.Drawing.Point(95, 194);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(62, 23);
this.button2.TabIndex = 3;
this.button2.Text = "全部取消";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(401, 239);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.ckltbox);
this.Controls.Add(this.toolbar);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.toolbar.ResumeLayout(false);
this.toolbar.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip toolbar;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripProgressBar ProgressBar;
private System.Windows.Forms.ToolStripLabel Prolbl;
private System.Windows.Forms.CheckedListBox ckltbox;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -