📄 form1.designer.cs
字号:
namespace Status
{
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.pbBattery = new System.Windows.Forms.ProgressBar();
this.ckCharging = new System.Windows.Forms.CheckBox();
this.pnlPower = new System.Windows.Forms.Panel();
this.pnlPower.SuspendLayout();
this.SuspendLayout();
//
// pbBattery
//
this.pbBattery.Location = new System.Drawing.Point(3, 3);
this.pbBattery.Name = "pbBattery";
this.pbBattery.Size = new System.Drawing.Size(164, 20);
//
// ckCharging
//
this.ckCharging.Location = new System.Drawing.Point(3, 29);
this.ckCharging.Name = "ckCharging";
this.ckCharging.Size = new System.Drawing.Size(164, 20);
this.ckCharging.TabIndex = 1;
this.ckCharging.TabStop = false;
this.ckCharging.Text = "Charging";
//
// pnlPower
//
this.pnlPower.Controls.Add(this.pbBattery);
this.pnlPower.Controls.Add(this.ckCharging);
this.pnlPower.Location = new System.Drawing.Point(37, 3);
this.pnlPower.Name = "pnlPower";
this.pnlPower.Size = new System.Drawing.Size(170, 52);
//
// 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.pnlPower);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Status";
this.Load += new System.EventHandler(this.Form1_Load);
this.pnlPower.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ProgressBar pbBattery;
private System.Windows.Forms.CheckBox ckCharging;
private System.Windows.Forms.Panel pnlPower;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -