📄 maxform.designer.cs
字号:
namespace Org.Vesic.WinForms
{
partial class MaxForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <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.btnFullScreen = new System.Windows.Forms.Button();
this.btnNormal = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnFullScreen
//
this.btnFullScreen.Location = new System.Drawing.Point(12, 31);
this.btnFullScreen.Name = "btnFullScreen";
this.btnFullScreen.Size = new System.Drawing.Size(75, 23);
this.btnFullScreen.TabIndex = 0;
this.btnFullScreen.Text = "&Full Screen";
this.btnFullScreen.UseVisualStyleBackColor = true;
this.btnFullScreen.Click += new System.EventHandler(this.button1_Click);
//
// btnNormal
//
this.btnNormal.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnNormal.Location = new System.Drawing.Point(106, 31);
this.btnNormal.Name = "btnNormal";
this.btnNormal.Size = new System.Drawing.Size(75, 23);
this.btnNormal.TabIndex = 1;
this.btnNormal.Text = "&Normal";
this.btnNormal.UseVisualStyleBackColor = true;
this.btnNormal.Click += new System.EventHandler(this.button2_Click);
//
// MaxForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnNormal;
this.ClientSize = new System.Drawing.Size(355, 98);
this.Controls.Add(this.btnNormal);
this.Controls.Add(this.btnFullScreen);
this.Name = "MaxForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Vesic.Org - Example of Full Screen WinForms App";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnFullScreen;
private System.Windows.Forms.Button btnNormal;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -