📄 form1.designer.cs
字号:
namespace MobileDevelopersHandbook
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.labelStatus = new System.Windows.Forms.Label();
this.buttonGetData = new System.Windows.Forms.Button();
this.listBoxResults = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// labelStatus
//
this.labelStatus.Location = new System.Drawing.Point(24, 198);
this.labelStatus.Name = "labelStatus";
this.labelStatus.Size = new System.Drawing.Size(192, 48);
this.labelStatus.Text = "Ready...";
//
// buttonGetData
//
this.buttonGetData.Location = new System.Drawing.Point(24, 166);
this.buttonGetData.Name = "buttonGetData";
this.buttonGetData.Size = new System.Drawing.Size(192, 24);
this.buttonGetData.TabIndex = 4;
this.buttonGetData.Text = "Show Overtime Rates";
this.buttonGetData.Click += new System.EventHandler(this.buttonGetData_Click);
//
// listBoxResults
//
this.listBoxResults.Location = new System.Drawing.Point(24, 22);
this.listBoxResults.Name = "listBoxResults";
this.listBoxResults.Size = new System.Drawing.Size(192, 128);
this.listBoxResults.TabIndex = 5;
this.listBoxResults.ValueMember = "OvertimeRateID";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.labelStatus);
this.Controls.Add(this.buttonGetData);
this.Controls.Add(this.listBoxResults);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Overtime Rates";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label labelStatus;
private System.Windows.Forms.Button buttonGetData;
private System.Windows.Forms.ListBox listBoxResults;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -