📄 frmmenuplustoolbar.designer.cs
字号:
namespace CodeForChapter2
{
partial class frmMenuPlusToolbar
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMenuPlusToolbar));
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.toolBar1 = new System.Windows.Forms.ToolBar();
this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.menuItem3 = new System.Windows.Forms.MenuItem();
this.menuItem4 = new System.Windows.Forms.MenuItem();
this.imageList1 = new System.Windows.Forms.ImageList();
this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
this.mainMenu1.MenuItems.Add(this.menuItem2);
this.mainMenu1.MenuItems.Add(this.menuItem4);
//
// toolBar1
//
this.toolBar1.Buttons.Add(this.toolBarButton1);
this.toolBar1.Buttons.Add(this.toolBarButton2);
this.toolBar1.ImageList = this.imageList1;
this.toolBar1.Name = "toolBar1";
this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
//
// toolBarButton1
//
this.toolBarButton1.ImageIndex = 0;
this.toolBarButton1.Pushed = true;
//
// menuItem1
//
this.menuItem1.MenuItems.Add(this.menuItem3);
this.menuItem1.Text = "Menu 1";
//
// menuItem2
//
this.menuItem2.Text = "Menu 2";
//
// menuItem3
//
this.menuItem3.Text = "Sub Menu 1";
//
// menuItem4
//
this.menuItem4.Text = "Menu 3";
this.imageList1.Images.Clear();
this.imageList1.Images.Add(((System.Drawing.Image)(resources.GetObject("resource"))));
this.imageList1.Images.Add(((System.Drawing.Image)(resources.GetObject("resource1"))));
//
// toolBarButton2
//
this.toolBarButton2.ImageIndex = 1;
//
// frmMenuPlusToolbar
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.toolBar1);
this.Menu = this.mainMenu1;
this.Name = "frmMenuPlusToolbar";
this.Text = "frmMenuPlusToolbar";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ToolBar toolBar1;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem menuItem3;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem menuItem4;
private System.Windows.Forms.ToolBarButton toolBarButton1;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.ToolBarButton toolBarButton2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -