📄 form1.designer.cs
字号:
namespace KioskApplication
{
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.mnuMessage = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.mnuHelp = new System.Windows.Forms.MenuItem();
this.chkStart = new System.Windows.Forms.CheckBox();
this.chkTaskbar = new System.Windows.Forms.CheckBox();
this.chkSip = new System.Windows.Forms.CheckBox();
this.hardwareButton1 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.hardwareButton2 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.hardwareButton3 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.hardwareButton4 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.hardwareButton5 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.hardwareButton6 = new Microsoft.WindowsCE.Forms.HardwareButton();
this.chkMaximized = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.mnuMessage);
this.mainMenu1.MenuItems.Add(this.menuItem2);
//
// mnuMessage
//
this.mnuMessage.Text = "Message";
this.mnuMessage.Click += new System.EventHandler(this.mnuMessage_Click);
//
// menuItem2
//
this.menuItem2.MenuItems.Add(this.mnuHelp);
this.menuItem2.Text = "Menu";
//
// mnuHelp
//
this.mnuHelp.Text = "Help";
this.mnuHelp.Click += new System.EventHandler(this.mnuHelp_Click);
//
// chkStart
//
this.chkStart.Location = new System.Drawing.Point(3, 36);
this.chkStart.Name = "chkStart";
this.chkStart.Size = new System.Drawing.Size(127, 20);
this.chkStart.TabIndex = 0;
this.chkStart.Text = "Hide Start Menu";
this.chkStart.CheckStateChanged += new System.EventHandler(this.chkStart_CheckStateChanged);
//
// chkTaskbar
//
this.chkTaskbar.Location = new System.Drawing.Point(3, 62);
this.chkTaskbar.Name = "chkTaskbar";
this.chkTaskbar.Size = new System.Drawing.Size(100, 20);
this.chkTaskbar.TabIndex = 1;
this.chkTaskbar.Text = "Hide Taskbar";
this.chkTaskbar.CheckStateChanged += new System.EventHandler(this.chkTaskbar_CheckStateChanged);
//
// chkSip
//
this.chkSip.Location = new System.Drawing.Point(3, 88);
this.chkSip.Name = "chkSip";
this.chkSip.Size = new System.Drawing.Size(100, 20);
this.chkSip.TabIndex = 2;
this.chkSip.Text = "Hide SIP";
this.chkSip.CheckStateChanged += new System.EventHandler(this.chkSip_CheckStateChanged);
//
// hardwareButton1
//
this.hardwareButton1.AssociatedControl = this;
this.hardwareButton1.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey1;
//
// hardwareButton2
//
this.hardwareButton2.AssociatedControl = this;
this.hardwareButton2.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey2;
//
// hardwareButton3
//
this.hardwareButton3.AssociatedControl = this;
this.hardwareButton3.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey3;
//
// hardwareButton4
//
this.hardwareButton4.AssociatedControl = this;
this.hardwareButton4.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey4;
//
// hardwareButton5
//
this.hardwareButton5.AssociatedControl = this;
this.hardwareButton5.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey5;
//
// hardwareButton6
//
this.hardwareButton6.AssociatedControl = this;
this.hardwareButton6.HardwareKey = Microsoft.WindowsCE.Forms.HardwareKeys.ApplicationKey6;
//
// chkMaximized
//
this.chkMaximized.Location = new System.Drawing.Point(3, 126);
this.chkMaximized.Name = "chkMaximized";
this.chkMaximized.Size = new System.Drawing.Size(100, 20);
this.chkMaximized.TabIndex = 3;
this.chkMaximized.Text = "Maximized";
this.chkMaximized.CheckStateChanged += new System.EventHandler(this.chkMaximized_CheckStateChanged);
//
// 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.chkMaximized);
this.Controls.Add(this.chkSip);
this.Controls.Add(this.chkTaskbar);
this.Controls.Add(this.chkStart);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Kiosk Example";
this.Closed += new System.EventHandler(this.Form1_Closed);
this.LostFocus += new System.EventHandler(this.Form1_LostFocus);
this.GotFocus += new System.EventHandler(this.Form1_GotFocus);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.Form1_HelpRequested);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.CheckBox chkStart;
private System.Windows.Forms.CheckBox chkTaskbar;
private System.Windows.Forms.CheckBox chkSip;
private System.Windows.Forms.MenuItem mnuMessage;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem mnuHelp;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton1;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton2;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton3;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton4;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton5;
private Microsoft.WindowsCE.Forms.HardwareButton hardwareButton6;
private System.Windows.Forms.CheckBox chkMaximized;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -