📄 form1.designer.cs
字号:
namespace photo
{
partial class Form1
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.打开ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.图像处理ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.显示灰度直方图ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.图像旋转ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.傅立叶变换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.傅立叶变换ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.文件ToolStripMenuItem,
this.图像处理ToolStripMenuItem,
this.傅立叶变换ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(714, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// 文件ToolStripMenuItem
//
this.文件ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.打开ToolStripMenuItem});
this.文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";
this.文件ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
this.文件ToolStripMenuItem.Text = "文件";
//
// 打开ToolStripMenuItem
//
this.打开ToolStripMenuItem.Name = "打开ToolStripMenuItem";
this.打开ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.打开ToolStripMenuItem.Text = "打开";
this.打开ToolStripMenuItem.Click += new System.EventHandler(this.打开ToolStripMenuItem_Click);
//
// 图像处理ToolStripMenuItem
//
this.图像处理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.显示灰度直方图ToolStripMenuItem,
this.图像旋转ToolStripMenuItem});
this.图像处理ToolStripMenuItem.Name = "图像处理ToolStripMenuItem";
this.图像处理ToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.图像处理ToolStripMenuItem.Text = "图像处理";
//
// 显示灰度直方图ToolStripMenuItem
//
this.显示灰度直方图ToolStripMenuItem.Name = "显示灰度直方图ToolStripMenuItem";
this.显示灰度直方图ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
this.显示灰度直方图ToolStripMenuItem.Text = "显示灰度直方图";
this.显示灰度直方图ToolStripMenuItem.Click += new System.EventHandler(this.显示灰度直方图ToolStripMenuItem_Click);
//
// 图像旋转ToolStripMenuItem
//
this.图像旋转ToolStripMenuItem.Name = "图像旋转ToolStripMenuItem";
this.图像旋转ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
this.图像旋转ToolStripMenuItem.Text = "图像旋转";
this.图像旋转ToolStripMenuItem.Click += new System.EventHandler(this.图像旋转ToolStripMenuItem_Click);
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(139, 70);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(357, 282);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// 傅立叶变换ToolStripMenuItem
//
this.傅立叶变换ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.傅立叶变换ToolStripMenuItem1});
this.傅立叶变换ToolStripMenuItem.Name = "傅立叶变换ToolStripMenuItem";
this.傅立叶变换ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
this.傅立叶变换ToolStripMenuItem.Text = "变换";
//
// 傅立叶变换ToolStripMenuItem1
//
this.傅立叶变换ToolStripMenuItem1.Name = "傅立叶变换ToolStripMenuItem1";
this.傅立叶变换ToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
this.傅立叶变换ToolStripMenuItem1.Text = "傅立叶变换";
this.傅立叶变换ToolStripMenuItem1.Click += new System.EventHandler(this.傅立叶变换ToolStripMenuItem1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(714, 450);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Form1";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 文件ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 打开ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 图像处理ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 显示灰度直方图ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 图像旋转ToolStripMenuItem;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.ToolStripMenuItem 傅立叶变换ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 傅立叶变换ToolStripMenuItem1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -