閱讀英文

共用方式為


ToolBarTextAlign 列舉

定義

指定在工具列按鈕控制項上文字的對齊方式 (Alignment)。

C#
public enum ToolBarTextAlign
繼承
ToolBarTextAlign

欄位

名稱 Description
Right 1

文字會向工具列按鈕影像的右方對齊。

Underneath 0

文字會向工具列按鈕影像的下方對齊。

範例

下列範例會 ToolBar 建立 控制項、設定其一些通用屬性,並將它新增至 Form 。 委派也會新增至 ButtonClickButtonDropDown 事件。 此範例假設 ToolBar 已宣告具名 toolBar1ImageList 具名 imageList1 的 。

C#
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.TextAlign 會使用此列舉。

會議室會保留給要顯示在工具列按鈕上的影像。 文字的對齊方式與工具列按鈕上顯示的影像有關。 如果未將影像指派給按鈕,保留的空間會顯示在左側或上方顯示的文字。

適用於

產品 版本
.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

另請參閱