📄 menuclass.designer.cs
字号:
namespace pwxt
{
partial class menuclass
{
/// <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.button1 = new System.Windows.Forms.Button();
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.lv = new System.Windows.Forms.ListView();
this.button2 = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 244);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(68, 23);
this.button1.TabIndex = 1;
this.button1.Text = "购票";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// 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(455, 24);
this.menuStrip1.TabIndex = 2;
this.menuStrip1.Text = "menuStrip1";
//
// 查询ToolStripMenuItem
//
this.查询ToolStripMenuItem.Name = "查询ToolStripMenuItem";
this.查询ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.查询ToolStripMenuItem.Text = "查询";
this.查询ToolStripMenuItem.Click += new System.EventHandler(this.查询ToolStripMenuItem_Click_1);
//
// 增加ToolStripMenuItem
//
this.增加ToolStripMenuItem.Name = "增加ToolStripMenuItem";
this.增加ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.增加ToolStripMenuItem.Text = "增加";
this.增加ToolStripMenuItem.Click += new System.EventHandler(this.增加ToolStripMenuItem_Click);
//
// 删除ToolStripMenuItem
//
this.删除ToolStripMenuItem.Name = "删除ToolStripMenuItem";
this.删除ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.删除ToolStripMenuItem.Text = "删除";
this.删除ToolStripMenuItem.Click += new System.EventHandler(this.删除ToolStripMenuItem_Click);
//
// lv
//
this.lv.Location = new System.Drawing.Point(12, 45);
this.lv.Name = "lv";
this.lv.Size = new System.Drawing.Size(392, 133);
this.lv.TabIndex = 3;
this.lv.UseCompatibleStateImageBehavior = false;
//
// button2
//
this.button2.Location = new System.Drawing.Point(114, 244);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 4;
this.button2.Text = "退出";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// menuclass
//
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(455, 354);
this.Controls.Add(this.button2);
this.Controls.Add(this.lv);
this.Controls.Add(this.button1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "menuclass";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "购票版面";
this.Load += new System.EventHandler(this.menuclass_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ListView lv;
private System.Windows.Forms.Button button2;
public System.Windows.Forms.ToolStripMenuItem 查询ToolStripMenuItem;
public System.Windows.Forms.ToolStripMenuItem 增加ToolStripMenuItem;
public System.Windows.Forms.ToolStripMenuItem 删除ToolStripMenuItem;
public System.Windows.Forms.Button button1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -