📄 form1.designer.cs
字号:
namespace 第16次作业
{
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.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.statuslbl1 = new System.Windows.Forms.ToolStripStatusLabel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.画图ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuzx = new System.Windows.Forms.ToolStripMenuItem();
this.menuty = new System.Windows.Forms.ToolStripMenuItem();
this.menujx = 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.label = new System.Windows.Forms.Label();
this.txtbox1 = new System.Windows.Forms.TextBox();
this.statusStrip1.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.statuslbl1});
this.statusStrip1.Location = new System.Drawing.Point(0, 242);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(284, 22);
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// statuslbl1
//
this.statuslbl1.Name = "statuslbl1";
this.statuslbl1.Size = new System.Drawing.Size(131, 17);
this.statuslbl1.Text = "toolStripStatusLabel1";
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.画图ToolStripMenuItem,
this.属性ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(284, 25);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// 画图ToolStripMenuItem
//
this.画图ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuzx,
this.menuty,
this.menujx,
this.不画图ToolStripMenuItem});
this.画图ToolStripMenuItem.Name = "画图ToolStripMenuItem";
this.画图ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
this.画图ToolStripMenuItem.Text = "画图";
//
// menuzx
//
this.menuzx.Name = "menuzx";
this.menuzx.Size = new System.Drawing.Size(152, 22);
this.menuzx.Text = "画直线";
this.menuzx.Click += new System.EventHandler(this.画直线ToolStripMenuItem_Click);
//
// menuty
//
this.menuty.Name = "menuty";
this.menuty.Size = new System.Drawing.Size(152, 22);
this.menuty.Text = "画椭圆";
this.menuty.Click += new System.EventHandler(this.画椭圆ToolStripMenuItem_Click);
//
// menujx
//
this.menujx.Name = "menujx";
this.menujx.Size = new System.Drawing.Size(152, 22);
this.menujx.Text = "画矩形";
this.menujx.Click += new System.EventHandler(this.画矩形ToolStripMenuItem_Click);
//
// 不画图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.Name = "属性ToolStripMenuItem";
this.属性ToolStripMenuItem.Size = new System.Drawing.Size(44, 21);
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_1);
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(101, 7);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(77, 12);
this.label.TabIndex = 2;
this.label.Text = "输入笔的宽度";
//
// txtbox1
//
this.txtbox1.Location = new System.Drawing.Point(184, 4);
this.txtbox1.Name = "txtbox1";
this.txtbox1.Size = new System.Drawing.Size(68, 21);
this.txtbox1.TabIndex = 3;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 264);
this.Controls.Add(this.txtbox1);
this.Controls.Add(this.label);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Form1";
//this.Load += new System.EventHandler(this.Form1_Load);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseUp);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel statuslbl1;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem 画图ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem menuzx;
private System.Windows.Forms.ToolStripMenuItem menuty;
private System.Windows.Forms.ToolStripMenuItem menujx;
private System.Windows.Forms.ToolStripMenuItem 不画图ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 属性ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 颜色ToolStripMenuItem;
private System.Windows.Forms.Label label;
private System.Windows.Forms.TextBox txtbox1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -