📄 formsaveimage.designer.cs
字号:
namespace SaveImage
{
partial class FormSaveImage
{
/// <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.buttonShow = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonShow
//
this.buttonShow.Location = new System.Drawing.Point(40, 226);
this.buttonShow.Name = "buttonShow";
this.buttonShow.Size = new System.Drawing.Size(75, 23);
this.buttonShow.TabIndex = 0;
this.buttonShow.Text = "显示";
this.buttonShow.UseVisualStyleBackColor = true;
this.buttonShow.Click += new System.EventHandler(this.buttonShow_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(140, 226);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 1;
this.buttonSave.Text = "保存";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// FormSaveImage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(247, 261);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.buttonShow);
this.Name = "FormSaveImage";
this.Text = "保存图像示例";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonShow;
private System.Windows.Forms.Button buttonSave;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -