ToolBar.Appearance プロパティ
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

<LocalizableAttribute(True)> _ Public Property Appearance As ToolBarAppearance
Dim instance As ToolBar Dim value As ToolBarAppearance value = instance.Appearance instance.Appearance = value
[LocalizableAttribute(true)] public: property ToolBarAppearance Appearance { ToolBarAppearance get (); void set (ToolBarAppearance value); }
/** @property */ public ToolBarAppearance get_Appearance () /** @property */ public void set_Appearance (ToolBarAppearance value)
public function get Appearance () : ToolBarAppearance public function set Appearance (value : ToolBarAppearance)
ToolBarAppearance 値の 1 つ。既定値は ToolBarAppearance.Normal です。


Appearance プロパティは、ツール バーに割り当てるボタンの外観に影響します。外観が ToolBarAppearance.Normal に設定されている場合、ツール バーのボタンは 3D の浮き出した状態で表示されます。ツール バーの Appearance プロパティを ToolBarAppearance.Flat に設定すると、ツール バーのボタンはフラットな外観になります。マウス ポインタがフラットなボタンの上に移動すると、ボタンは浮き出した状態の 3D で表示されます。Appearance プロパティが Flat に設定された ToolBar の区切り記号は、浮き出した状態の各ボタンの間の空白ではなく刻み線として表示されます。フラット スタイルのボタンの場合、アプリケーションはさらに Web のような外観になります。

ToolBar コントロールを作成し、その共通のプロパティの一部を設定し、これを Form に追加するコード例を次に示します。デリゲートは、ButtonClick イベントおよび ButtonDropDown イベントにも追加されます。この例は、toolBar1 という名前の ToolBar と imageList1 という名前の ImageList が宣言されていることを前提にしています。
Private Sub 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(Me.toolBarButton1) toolBar1.ButtonSize = New System.Drawing.Size(24, 24) toolBar1.Divider = True toolBar1.DropDownArrows = True toolBar1.ImageList = Me.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. AddHandler toolBar1.ButtonDropDown, AddressOf toolBar1_ButtonDropDown AddHandler toolBar1.ButtonClick, AddressOf toolBar1_ButtonClicked ' Add the toolbar to the form. Me.Controls.Add(toolBar1) End Sub
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); }
void AddToolBar() { // Add a toolbar and set some of its properties. toolBar1 = gcnew ToolBar; toolBar1->Appearance = System::Windows::Forms::ToolBarAppearance::Flat; toolBar1->BorderStyle = System::Windows::Forms::BorderStyle::None; toolBar1->Buttons->Add( this->toolBarButton1 ); toolBar1->ButtonSize = System::Drawing::Size( 24, 24 ); toolBar1->Divider = true; toolBar1->DropDownArrows = true; toolBar1->ImageList = this->imageList1; toolBar1->ShowToolTips = true; toolBar1->Size = 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 += gcnew ToolBarButtonClickEventHandler( this, &MyToolBar::toolBar1_ButtonDropDown ); toolBar1->ButtonClick += gcnew ToolBarButtonClickEventHandler( this, &MyToolBar::toolBar1_ButtonClicked ); // Add the toolbar to the form. this->Controls->Add( toolBar1 ); }
private void AddToolBar() { // Add a toolbar and set some of its properties. toolBar1 = new ToolBar(); toolBar1.set_Appearance(System.Windows.Forms.ToolBarAppearance.Flat); toolBar1.set_BorderStyle(System.Windows.Forms.BorderStyle.None); toolBar1.get_Buttons().Add(this.toolBarButton1); toolBar1.set_ButtonSize(new System.Drawing.Size(24, 24)); toolBar1.set_Divider(true); toolBar1.set_DropDownArrows(true); toolBar1.set_ImageList(this.imageList1); toolBar1.set_ShowToolTips(true); toolBar1.set_Size(new System.Drawing.Size(292, 25)); toolBar1.set_TabIndex(0); toolBar1.set_TextAlign(System.Windows.Forms.ToolBarTextAlign.Right); toolBar1.set_Wrappable(false); // Add handlers for the ButtonClick and ButtonDropDown events. toolBar1.add_ButtonDropDown(new ToolBarButtonClickEventHandler (toolBar1_ButtonDropDown)); toolBar1.add_ButtonClick(new ToolBarButtonClickEventHandler (toolBar1_ButtonClicked)); // Add the toolbar to the form. this.get_Controls().Add(toolBar1); } //AddToolBar

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


ToolBarAppearance 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Public Enumeration ToolBarAppearance

メンバ名 | 説明 | |
---|---|---|
Flat | ツール バーとボタンはフラットな外観で表示されますが、マウス ポインタがそれらの上に移動するとボタンが 3D に変わります。 | |
Normal | ツール バーとボタンは、標準の 3D コントロールとして表示されます。 |

この列挙体は、ToolBar.Appearance などのメンバで使用されます。
ツール バーの Appearance プロパティを ToolBarAppearance.Flat に設定して、ツール バーとそのボタンがフラットな外観になるようにします。マウス ポインタをボタンの上に移動すると、ボタンの外観が 3D に変化します。ツール バーがフラットな外観である場合、ボタンの区切り記号は、各ボタンとの間に空白ではなく線として表示されます。

ToolBar コントロールを作成し、その共通のプロパティの一部を設定し、これを Form に追加する例を次に示します。デリゲートは、ButtonClick イベントおよび ButtonDropDown イベントにも追加されます。この例は、toolBar1 という名前の ToolBar と imageList1 という名前の ImageList が宣言されていることを前提にしています。
Private Sub 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(Me.toolBarButton1) toolBar1.ButtonSize = New System.Drawing.Size(24, 24) toolBar1.Divider = True toolBar1.DropDownArrows = True toolBar1.ImageList = Me.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. AddHandler toolBar1.ButtonDropDown, AddressOf toolBar1_ButtonDropDown AddHandler toolBar1.ButtonClick, AddressOf toolBar1_ButtonClicked ' Add the toolbar to the form. Me.Controls.Add(toolBar1) End Sub
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); }
void AddToolBar() { // Add a toolbar and set some of its properties. toolBar1 = gcnew ToolBar; toolBar1->Appearance = System::Windows::Forms::ToolBarAppearance::Flat; toolBar1->BorderStyle = System::Windows::Forms::BorderStyle::None; toolBar1->Buttons->Add( this->toolBarButton1 ); toolBar1->ButtonSize = System::Drawing::Size( 24, 24 ); toolBar1->Divider = true; toolBar1->DropDownArrows = true; toolBar1->ImageList = this->imageList1; toolBar1->ShowToolTips = true; toolBar1->Size = 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 += gcnew ToolBarButtonClickEventHandler( this, &MyToolBar::toolBar1_ButtonDropDown ); toolBar1->ButtonClick += gcnew ToolBarButtonClickEventHandler( this, &MyToolBar::toolBar1_ButtonClicked ); // Add the toolbar to the form. this->Controls->Add( toolBar1 ); }
private void AddToolBar() { // Add a toolbar and set some of its properties. toolBar1 = new ToolBar(); toolBar1.set_Appearance(System.Windows.Forms.ToolBarAppearance.Flat); toolBar1.set_BorderStyle(System.Windows.Forms.BorderStyle.None); toolBar1.get_Buttons().Add(this.toolBarButton1); toolBar1.set_ButtonSize(new System.Drawing.Size(24, 24)); toolBar1.set_Divider(true); toolBar1.set_DropDownArrows(true); toolBar1.set_ImageList(this.imageList1); toolBar1.set_ShowToolTips(true); toolBar1.set_Size(new System.Drawing.Size(292, 25)); toolBar1.set_TabIndex(0); toolBar1.set_TextAlign(System.Windows.Forms.ToolBarTextAlign.Right); toolBar1.set_Wrappable(false); // Add handlers for the ButtonClick and ButtonDropDown events. toolBar1.add_ButtonDropDown(new ToolBarButtonClickEventHandler (toolBar1_ButtonDropDown)); toolBar1.add_ButtonClick(new ToolBarButtonClickEventHandler (toolBar1_ButtonClicked)); // Add the toolbar to the form. this.get_Controls().Add(toolBar1); } //AddToolBar

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- ToolBar.Appearanceのページへのリンク