ToolStripButton 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示可包含文字和影像的可選取 ToolStripItem。
public ref class ToolStripButton : System::Windows::Forms::ToolStripItem
[System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip)]
public class ToolStripButton : System.Windows.Forms.ToolStripItem
[<System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip)>]
type ToolStripButton = class
inherit ToolStripItem
Public Class ToolStripButton
Inherits ToolStripItem
- 繼承
- 繼承
- 屬性
範例
下列程式碼範例顯示兩 ToolStripButton 個 ToolStrip 控制項,其中含有 影像和文字。 按一下 [新增ToolStripButton ] 會顯示訊息方塊。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsApplication11
{
public class Form1 : Form
{
private ToolStripButton toolStripButton1;
private ToolStripButton toolStripButton2;
private ToolStrip toolStrip1;
public Form1()
{
InitializeComponent();
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new Form1());
}
private void InitializeComponent()
{
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1,
this.toolStripButton2});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripButton1
//
this.toolStripButton1.Image = Bitmap.FromFile("c:\\NewItem.bmp");
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText;
this.toolStripButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Text = "&New";
this.toolStripButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// toolStripButton2
//
this.toolStripButton2.Image = Bitmap.FromFile("c:\\OpenItem.bmp");
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Text = "&Open";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.toolStrip1);
this.Name = "Form1";
this.toolStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
private void toolStripButton1_Click(object sender, EventArgs e)
{
MessageBox.Show("You have mail.");
}
private void toolStripButton2_Click(object sender, EventArgs e)
{
// Add the response to the Click event here.
}
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private WithEvents toolStripButton1 As ToolStripButton
Private WithEvents toolStripButton2 As ToolStripButton
Private toolStrip1 As ToolStrip
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
Me.toolStrip1 = New System.Windows.Forms.ToolStrip()
Me.toolStripButton1 = New System.Windows.Forms.ToolStripButton()
Me.toolStripButton2 = New System.Windows.Forms.ToolStripButton()
Me.toolStrip1.SuspendLayout()
Me.SuspendLayout()
'
' toolStrip1
'
Me.toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.toolStripButton1, Me.toolStripButton2})
Me.toolStrip1.Location = New System.Drawing.Point(0, 0)
Me.toolStrip1.Name = "toolStrip1"
Me.toolStrip1.TabIndex = 0
Me.toolStrip1.Text = "toolStrip1"
'
' toolStripButton1
Me.toolStripButton1.Image = Bitmap.FromFile("c:\NewItem.bmp")
Me.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.toolStripButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.toolStripButton1.Name = "toolStripButton1"
Me.toolStripButton1.Text = "&New"
Me.toolStripButton1.TextAlign = System.Drawing.ContentAlignment.MiddleRight
' toolStripButton2
'
Me.toolStripButton2.Image = Bitmap.FromFile("c:\OpenItem.bmp")
Me.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.toolStripButton2.Name = "toolStripButton2"
Me.toolStripButton2.Text = "&Open"
'
' Form1
'
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(toolStrip1)
Me.Name = "Form1"
Me.toolStrip1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private Sub toolStripButton1_Click(sender As Object, e As EventArgs) Handles toolStripButton1.Click
MessageBox.Show("You have mail.")
End Sub
Private Sub toolStripButton2_Click(sender As Object, e As EventArgs) Handles toolStripButton2.Click
' Add the response to the Click event here.
End Sub
End Class
備註
使用 ToolStripButton 建立同時支援文字和影像的工具列按鈕。 ToolStripItem.ImageAlign使用 和 ToolStripItem.TextAlign 屬性來取得或設定影像和文字的位置 ToolStripButton 。
您可以使用各種框線樣式來顯示 ToolStripButton ,而且您可以使用它來表示和啟用操作狀態。 您也可以定義它,使其預設具有焦點。
雖然 ToolStripButton 會取代和擴充 ToolBarButton 舊版的控制, ToolBarButton 但會保留回溯相容性和未來使用。
建構函式
ToolStripButton() |
初始化 ToolStripButton 類別的新執行個體。 |
ToolStripButton(Image) |
初始化 ToolStripButton 類別的新執行個體,以便顯示指定的影像。 |
ToolStripButton(String) |
初始化 ToolStripButton 類別的新執行個體,以便顯示指定的文字。 |
ToolStripButton(String, Image) |
初始化 ToolStripButton 類別的新執行個體,以便顯示指定的文字和影像。 |
ToolStripButton(String, Image, EventHandler) |
初始化 ToolStripButton 類別的新執行個體,以便顯示指定的文字和影像,並引發 Click 事件。 |
ToolStripButton(String, Image, EventHandler, String) |
使用指定的名稱,初始化 ToolStripButton 類別的新執行個體,以便顯示指定的文字和影像,並引發 Click 事件。 |
屬性
方法
事件
明確介面實作
IDropTarget.OnDragDrop(DragEventArgs) |
引發 DragDrop 事件。 (繼承來源 ToolStripItem) |
IDropTarget.OnDragEnter(DragEventArgs) |
引發 DragEnter 事件。 (繼承來源 ToolStripItem) |
IDropTarget.OnDragLeave(EventArgs) |
引發 DragLeave 事件。 (繼承來源 ToolStripItem) |
IDropTarget.OnDragOver(DragEventArgs) |
引發 |