ToolBarAppearance 枚举

定义

指定要显示的工具栏的类型。

public enum ToolBarAppearance
继承
ToolBarAppearance

字段

Flat 1

工具栏和按钮以平面显示,但当鼠标指针移动到按钮上时,按钮变为三维效果。

Normal 0

工具栏和按钮显示为标准的三维控件。

示例

以下示例创建一个 ToolBar 控件,设置其一些公共属性,并将其添加到 Form。 委托也会添加到 ButtonClickButtonDropDown 事件中。 此示例假定 ToolBar 已声明命名 toolBar1ImageList 命名 imageList1

private void AddToolBar()
{
   // Add a toolbar and set some of its properties.
   toolBar1 = new ToolBar();
   toolBar1.Appearance = System.Windows.Forms.ToolBarAppearance.Flat;
   toolBar1.BorderStyle = System.Windows.Forms.BorderStyle.None;
   toolBar1.Buttons.Add(this.toolBarButton1);
   toolBar1.ButtonSize = new System.Drawing.Size(24, 24);
   toolBar1.Divider = true;
   toolBar1.DropDownArrows = true;
   toolBar1.ImageList = this.imageList1;
   toolBar1.ShowToolTips = true;
   toolBar1.Size = new System.Drawing.Size(292, 25);
   toolBar1.TabIndex = 0;
   toolBar1.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right;
   toolBar1.Wrappable = false;
   
   // Add handlers for the ButtonClick and ButtonDropDown events.
   toolBar1.ButtonDropDown += 
     new ToolBarButtonClickEventHandler(toolBar1_ButtonDropDown);
   toolBar1.ButtonClick += 
     new ToolBarButtonClickEventHandler(toolBar1_ButtonClicked);

   // Add the toolbar to the form.
   this.Controls.Add(toolBar1);
}

注解

此枚举由成员(如 ) ToolBar.Appearance使用。

Appearance 工具栏的 属性设置为 , ToolBarAppearance.Flat 使工具栏及其按钮具有平面外观。 当鼠标指针在按钮上移动时,它们的外观将变为三维。 当工具栏具有平面外观时,按钮分隔符显示为线条,而不是按钮之间的空格。

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0

另请参阅