ToolStripProgressBar 類別

定義

表示 StatusStrip 中所包含的 Windows 進度列控制項。

public ref class ToolStripProgressBar : System::Windows::Forms::ToolStripControlHost
public class ToolStripProgressBar : System.Windows.Forms.ToolStripControlHost
type ToolStripProgressBar = class
    inherit ToolStripControlHost
Public Class ToolStripProgressBar
Inherits ToolStripControlHost
繼承
繼承

範例

下列程式碼範例示範 ToolStripProgressBar 計算 Fibonacci 數位序列的 。

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.ComponentModel;

class FibonacciNumber : Form
{
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.Run(new FibonacciNumber());
    }

    private StatusStrip progressStatusStrip;
    private ToolStripProgressBar toolStripProgressBar;
    private NumericUpDown requestedCountControl;
    private Button goButton;
    private TextBox outputTextBox;
    private BackgroundWorker backgroundWorker;
    private ToolStripStatusLabel toolStripStatusLabel;
    private int requestedCount;

    public FibonacciNumber()
    {
        Text = "Fibonacci";
        
        // Prepare the StatusStrip.
        progressStatusStrip = new StatusStrip();
        toolStripProgressBar = new ToolStripProgressBar();
        toolStripProgressBar.Enabled = false;
        toolStripStatusLabel = new ToolStripStatusLabel();
        progressStatusStrip.Items.Add(toolStripProgressBar);
        progressStatusStrip.Items.Add(toolStripStatusLabel);

        FlowLayoutPanel flp = new FlowLayoutPanel();
        flp.Dock = DockStyle.Top;

        Label beforeLabel = new Label();
        beforeLabel.Text = "Calculate the first ";
        beforeLabel.AutoSize = true;
        flp.Controls.Add(beforeLabel);
        requestedCountControl = new NumericUpDown();
        requestedCountControl.Maximum = 1000;
        requestedCountControl.Minimum = 1;
        requestedCountControl.Value = 100;
        flp.Controls.Add(requestedCountControl);
        Label afterLabel = new Label();
        afterLabel.Text = "Numbers in the Fibonacci sequence.";
        afterLabel.AutoSize = true;
        flp.Controls.Add(afterLabel);
        
        goButton = new Button();
        goButton.Text = "&Go";
        goButton.Click += new System.EventHandler(button1_Click);
        flp.Controls.Add(goButton);

        outputTextBox = new TextBox();
        outputTextBox.Multiline = true;
        outputTextBox.ReadOnly = true;
        outputTextBox.ScrollBars = ScrollBars.Vertical;
        outputTextBox.Dock = DockStyle.Fill;

        Controls.Add(outputTextBox);
        Controls.Add(progressStatusStrip);
        Controls.Add(flp);

        backgroundWorker = new BackgroundWorker();
        backgroundWorker.WorkerReportsProgress = true;
        backgroundWorker.DoWork += new DoWorkEventHandler(backgroundWorker1_DoWork);
        backgroundWorker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(backgroundWorker1_RunWorkerCompleted);
        backgroundWorker.ProgressChanged += new ProgressChangedEventHandler(backgroundWorker1_ProgressChanged);
    }

    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    {
        // This method will run on a thread other than the UI thread.
        // Be sure not to manipulate any Windows Forms controls created
        // on the UI thread from this method.
        backgroundWorker.ReportProgress(0, "Working...");
        Decimal lastlast = 0;
        Decimal last = 1;
        Decimal current;
        if (requestedCount >= 1)
        { AppendNumber(0); }
        if (requestedCount >= 2)
        { AppendNumber(1); }
        for (int i = 2; i < requestedCount; ++i)
        {
            // Calculate the number.
            checked { current = lastlast + last; }
            // Introduce some delay to simulate a more complicated calculation.
            System.Threading.Thread.Sleep(100);
            AppendNumber(current);
            backgroundWorker.ReportProgress((100 * i) / requestedCount, "Working...");
            // Get ready for the next iteration.
            lastlast = last;
            last = current;
        }

        backgroundWorker.ReportProgress(100, "Complete!");
    }

    private delegate void AppendNumberDelegate(Decimal number);
    private void AppendNumber(Decimal number)
    {
        if (outputTextBox.InvokeRequired)
        { outputTextBox.Invoke(new AppendNumberDelegate(AppendNumber), number); }
        else
        { outputTextBox.AppendText(number.ToString("N0") + Environment.NewLine); }
    }
    private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
    {
        toolStripProgressBar.Value = e.ProgressPercentage;
        toolStripStatusLabel.Text = e.UserState as String;
    }

    private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    {
        if (e.Error is OverflowException)
        { outputTextBox.AppendText(Environment.NewLine + "**OVERFLOW ERROR, number is too large to be represented by the decimal data type**"); }
        toolStripProgressBar.Enabled = false;
        requestedCountControl.Enabled = true;
        goButton.Enabled = true;
    }

    private void button1_Click(object sender, EventArgs e)
    {
        goButton.Enabled = false;
        toolStripProgressBar.Enabled = true;
        requestedCount = (int)requestedCountControl.Value;
        requestedCountControl.Enabled = false;
        outputTextBox.Clear();
        backgroundWorker.RunWorkerAsync();
    }
}
Imports System.Collections.Generic
Imports System.Windows.Forms
Imports System.ComponentModel



Class FibonacciNumber
   Inherits Form
   
   <STAThread()>  _
   Shared Sub Main()
      Application.EnableVisualStyles()
      Application.Run(New FibonacciNumber())
   End Sub    
   Private progressStatusStrip As StatusStrip
   Private toolStripProgressBar As ToolStripProgressBar
   Private requestedCountControl As NumericUpDown
   Private goButton As Button
   Private outputTextBox As TextBox
   Private backgroundWorker As BackgroundWorker
   Private toolStripStatusLabel As ToolStripStatusLabel
   Private requestedCount As Integer
   
   
   Public Sub New()
      [Text] = "Fibonacci"
      
      ' Prepare the StatusStrip.
      progressStatusStrip = New StatusStrip()
      toolStripProgressBar = New ToolStripProgressBar()
      toolStripProgressBar.Enabled = False
      toolStripStatusLabel = New ToolStripStatusLabel()
      progressStatusStrip.Items.Add(toolStripProgressBar)
      progressStatusStrip.Items.Add(toolStripStatusLabel)
      
      Dim flp As New FlowLayoutPanel()
      flp.Dock = DockStyle.Top
      
      Dim beforeLabel As New Label()
      beforeLabel.Text = "Calculate the first "
      beforeLabel.AutoSize = True
      flp.Controls.Add(beforeLabel)
      requestedCountControl = New NumericUpDown()
      requestedCountControl.Maximum = 1000
      requestedCountControl.Minimum = 1
      requestedCountControl.Value = 100
      flp.Controls.Add(requestedCountControl)
      Dim afterLabel As New Label()
      afterLabel.Text = "Numbers in the Fibonacci sequence."
      afterLabel.AutoSize = True
      flp.Controls.Add(afterLabel)
      
      goButton = New Button()
      goButton.Text = "&Go"
      AddHandler goButton.Click, AddressOf button1_Click
      flp.Controls.Add(goButton)
      
      outputTextBox = New TextBox()
      outputTextBox.Multiline = True
      outputTextBox.ReadOnly = True
      outputTextBox.ScrollBars = ScrollBars.Vertical
      outputTextBox.Dock = DockStyle.Fill
      
      Controls.Add(outputTextBox)
      Controls.Add(progressStatusStrip)
      Controls.Add(flp)
      
      backgroundWorker = New BackgroundWorker()
      backgroundWorker.WorkerReportsProgress = True
      AddHandler backgroundWorker.DoWork, AddressOf backgroundWorker1_DoWork
      AddHandler backgroundWorker.RunWorkerCompleted, AddressOf backgroundWorker1_RunWorkerCompleted
      AddHandler backgroundWorker.ProgressChanged, AddressOf backgroundWorker1_ProgressChanged
   End Sub 
    
   
   Private Sub backgroundWorker1_DoWork(sender As Object, e As DoWorkEventArgs)
      ' This method will run on a thread other than the UI thread.
      ' Be sure not to manipulate any Windows Forms controls created
      ' on the UI thread from this method.
      backgroundWorker.ReportProgress(0, "Working...")
      Dim lastlast As [Decimal] = 0
      Dim last As [Decimal] = 1
      Dim current As [Decimal]
      If requestedCount >= 1 Then
         AppendNumber(0)
      End If
      If requestedCount >= 2 Then
         AppendNumber(1)
      End If
      Dim i As Integer
      
      While i < requestedCount
         ' Calculate the number.
         current = lastlast + last
         ' Introduce some delay to simulate a more complicated calculation.
         System.Threading.Thread.Sleep(100)
         AppendNumber(current)
         backgroundWorker.ReportProgress(100 * i / requestedCount, "Working...")
         ' Get ready for the next iteration.
         lastlast = last
         last = current
         i += 1
      End While
      
      
      backgroundWorker.ReportProgress(100, "Complete!")
    End Sub
   
   
   Delegate Sub AppendNumberDelegate(number As [Decimal])
   
   Private Sub AppendNumber(number As [Decimal])
      If outputTextBox.InvokeRequired Then
         outputTextBox.Invoke(New AppendNumberDelegate(AddressOf AppendNumber), number)
      Else
         outputTextBox.AppendText((number.ToString("N0") + Environment.NewLine))
      End If
   End Sub 
   Private Sub backgroundWorker1_ProgressChanged(sender As Object, e As ProgressChangedEventArgs)
      toolStripProgressBar.Value = e.ProgressPercentage
      toolStripStatusLabel.Text = e.UserState '
   End Sub 
   
   
   Private Sub backgroundWorker1_RunWorkerCompleted(sender As Object, e As RunWorkerCompletedEventArgs)
      If TypeOf e.Error Is OverflowException Then
         outputTextBox.AppendText((Environment.NewLine + "**OVERFLOW ERROR, number is too large to be represented by the decimal data type**"))
      End If
      toolStripProgressBar.Enabled = False
      requestedCountControl.Enabled = True
      goButton.Enabled = True
   End Sub 
    
   
   Private Sub button1_Click(sender As Object, e As EventArgs)
      goButton.Enabled = False
      toolStripProgressBar.Enabled = True
      requestedCount = Fix(requestedCountControl.Value)
      requestedCountControl.Enabled = False
      outputTextBox.Clear()
      backgroundWorker.RunWorkerAsync()
   End Sub 
End Class

備註

ToolStripProgressBar 是針對 ProgressBar 在 中 ToolStrip 裝載優化的 。 裝載控制項的屬性和事件的子集會在層級公開 ToolStripProgressBar ,但基礎 ProgressBar 控制項可透過 ProgressBar 屬性完全存取。

ToolStripProgressBar控制項會以視覺化方式指出長時間作業的進度。 控制項 ToolStripProgressBar 會顯示從左至右填入的橫條,並顯示系統在作業進行時反白顯示色彩。

注意

控制項 ToolStripProgressBar 只能水準方向。

ToolStripProgressBar當應用程式執行複製檔案或列印檔案等工作時,通常會使用控制項。 如果沒有視覺提示,應用程式的使用者可能會考慮應用程式沒有回應。 ToolStripProgressBar使用 來通知使用者應用程式正在執行冗長的工作,且應用程式仍在回應中。

MaximumMinimum 屬性會定義值範圍,以代表工作的進度。 屬性 Minimum 通常會設定為零的值,而且 Maximum 屬性通常會設定為值,指出工作完成。 例如,若要在複製檔案群組時正確顯示進度, Maximum 屬性可以設定為要複製的檔案總數。 屬性 Value 代表應用程式完成作業的進度。 因為控制項中顯示的列是區塊集合,所以唯 Value 一由 ToolStripProgressBar 屬性目前的值所顯示的值。 根據 的大小 ToolStripProgressBarValue 屬性會決定何時要顯示下一個區塊。

除了直接變更 Value 屬性以外,還有幾種方式可以修改 所顯示 ToolStripProgressBar 的值。 您可以使用 Step 屬性來指定要遞增屬性的特定值,然後呼叫 PerformStep 方法來遞增 Value 值。 若要改變遞增值,您可以使用 Increment 方法,並指定要遞增 Value 屬性的值。

ToolStripProgressBar 會取代舊 ProgressBar 版控制項,但保留為回溯相容性。

建構函式

ToolStripProgressBar()

初始化 ToolStripProgressBar 類別的新執行個體。

ToolStripProgressBar(String)

使用指定的名稱,初始化 ToolStripProgressBar 類別的新執行個體。

屬性

AccessibilityObject

取得指定給控制項的 AccessibleObject

(繼承來源 ToolStripItem)
AccessibleDefaultActionDescription

取得或設定協助用戶端應用程式所使用的控制項的預設動作描述。

(繼承來源 ToolStripItem)
AccessibleDescription

取得或設定將報告給協助工具用戶端應用程式的描述。

(繼承來源 ToolStripItem)
AccessibleName

取得或設定協助工具用戶端應用程式使用的控制項名稱。

(繼承來源 ToolStripItem)
AccessibleRole

取得或設定控制項的可存取角色,此角色可指定控制項的使用者介面項目之類型。

(繼承來源 ToolStripItem)
Alignment

取得或設定值,指出項目是否會向 ToolStrip 的開頭或結尾對齊。

(繼承來源 ToolStripItem)
AllowDrop

取得或設定值,指出拖放和項目的重新排列是否透過您實作的事件來加以處理。

(繼承來源 ToolStripItem)
Anchor

取得或設定 ToolStripItem 繫結容器的目的邊緣,並決定 ToolStripItem 隨其父代調整大小的方式。

(繼承來源 ToolStripItem)
AutoSize

取得或設定值,指出項目是否會自動調整大小。

(繼承來源 ToolStripItem)
AutoToolTip

取得或設定值,這個值指出是否要針對 ToolTipText 工具提示使用 Text 屬性或 ToolStripItem 屬性。

(繼承來源 ToolStripItem)
Available

取得或設定值,指出 ToolStripItem 是否應該置於 ToolStrip 上。

(繼承來源 ToolStripItem)
BackColor

取得或設定控制項的背景色彩。

(繼承來源 ToolStripControlHost)
BackgroundImage

這個屬性與這個類別無關。

BackgroundImageLayout

這個屬性與這個類別無關。

BindingContext

取得或設定 IBindableComponent 的 Currency 管理員集合。

(繼承來源 BindableComponent)
Bounds

取得項目的大小和位置。

(繼承來源 ToolStripItem)
CanRaiseEvents

取得值,指出元件是否能引發事件。

(繼承來源 Component)
CanSelect

取得指示能否選取控制項的值。

(繼承來源 ToolStripControlHost)
CausesValidation

取得或設定值,指出在裝載控制項取得焦點時,裝載控制項是否會導致並引發其他控制項的驗證事件。

(繼承來源 ToolStripControlHost)
Command

取得或設定 ICommand 叫用 ToolStripItem 事件時,將會呼叫其 Execute(Object) 方法的 Click

(繼承來源 ToolStripItem)
CommandParameter

取得或設定傳遞至指派給 ICommand 屬性之 的參數 Command

(繼承來源 ToolStripItem)
Container

取得包含 IContainerComponent

(繼承來源 Component)
ContentRectangle

取得類似文字和圖示的內容可以放置到 ToolStripItem 內,而不需要覆寫背景框線的區域。

(繼承來源 ToolStripItem)
Control

取得這個 Control 所裝載的 ToolStripControlHost

(繼承來源 ToolStripControlHost)
ControlAlign

取得或設定表單上控制項的對齊方式。

(繼承來源 ToolStripControlHost)
DataBindings

取得這個 IBindableComponent 的資料繫結物件集合。

(繼承來源 BindableComponent)
DefaultAutoToolTip

取得值,指出是否要顯示定義為預設值的 ToolTip

(繼承來源 ToolStripItem)
DefaultDisplayStyle

取得值,表示顯示在 ToolStripItem 上的項目為何。

(繼承來源 ToolStripItem)
DefaultMargin

取得 ToolStripProgressBar 和相鄰項目之間的間距。

DefaultPadding

取得項目的內部間距特性。

(繼承來源 ToolStripItem)
DefaultSize

取得 ToolStripProgressBar 的高度和寬度 (以像素為單位)。

DesignMode

取得值,指出 Component 目前是否處於設計模式。

(繼承來源 Component)
DismissWhenClicked

取得值,指出按一下 ToolStripDropDown 上的項目之後,這些項目是否會隱藏。

(繼承來源 ToolStripItem)
DisplayStyle

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
Dock

取得或設定停駐在其父控制項的 ToolStripItem 框線,並決定 ToolStripItem 隨其父代重新調整大小的方式。

(繼承來源 ToolStripItem)
DoubleClickEnabled

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
Enabled

取得或設定值,指出是否已啟用 ToolStripItem 的父控制項。

(繼承來源 ToolStripControlHost)
Events

取得附加在這個 Component 上的事件處理常式清單。

(繼承來源 Component)
Focused

取得指示控制項是否擁有輸入焦點的值。

(繼承來源 ToolStripControlHost)
Font

取得或設定要用於裝載控制項上的字型。

(繼承來源 ToolStripControlHost)
ForeColor

取得或設定裝載控制項的前景色彩。

(繼承來源 ToolStripControlHost)
Height

取得或設定 ToolStripItem 的高度 (以像素為單位)。

(繼承來源 ToolStripItem)
Image

與物件相關聯的影像。

(繼承來源 ToolStripControlHost)
ImageAlign

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
ImageIndex

取得或設定此項目上顯示的影像索引值。

(繼承來源 ToolStripItem)
ImageKey

取得或設定在 ImageList 中顯示在 ToolStripItem 上的影像之按鍵存取子 (Accessor)。

(繼承來源 ToolStripItem)
ImageScaling

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
ImageTransparentColor

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
IsDisposed

取得值,指出物件是否已經處置。

(繼承來源 ToolStripItem)
IsOnDropDown

取得值,指出目前 Control 的容器是否為 ToolStripDropDown

(繼承來源 ToolStripItem)
IsOnOverflow

取得值,指出 Placement 屬性是否設定為 Overflow

(繼承來源 ToolStripItem)
Margin

取得或設定此項目和相鄰項目之間的間距。

(繼承來源 ToolStripItem)
MarqueeAnimationSpeed

取得或設定值,表示每一次 Marquee 顯示更新之間的延遲時間 (以毫秒為單位)。

Maximum

取得或設定為此 ToolStripProgressBar 所定義的範圍上限。

MergeAction

取得或設定子功能表要如何與父功能表合併的值。

(繼承來源 ToolStripItem)
MergeIndex

取得或設定目前 ToolStrip 中已合併項目的位置。

(繼承來源 ToolStripItem)
Minimum

取得或設定為此 ToolStripProgressBar 所定義的範圍下限。

Name

取得或設定項目的名稱。

(繼承來源 ToolStripItem)
Overflow

取得或設定此項目是否附加至 ToolStripToolStripOverflowButton,或是可以在這兩者之間浮動的值。

(繼承來源 ToolStripItem)
Owner

取得或設定此項目的擁有人。

(繼承來源 ToolStripItem)
OwnerItem

取得這個 ToolStripItemToolStripItem

(繼承來源 ToolStripItem)
Padding

取得或設定介於此項目的內容與其邊緣之間的內部間距 (單位為像素)。

(繼承來源 ToolStripItem)
Parent

取得或設定 ToolStripItem 的父容器。

(繼承來源 ToolStripItem)
Placement

取得此項目的目前配置。

(繼承來源 ToolStripItem)
Pressed

取得值,指出是否已按下此項目的狀態。

(繼承來源 ToolStripItem)
ProgressBar

取得 ProgressBar

RightToLeft

取得或設定值,指出控制項的項目是否對齊,以支援使用由右至左字型的地區設定。

(繼承來源 ToolStripControlHost)
RightToLeftAutoMirrorImage

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
RightToLeftLayout

取得或設定值,指出當 ToolStripProgressBar 屬性設定為 RightToLeft 時,Yes 配置為右到左還是左到右。

Selected

取得值,指出是否已選取此項目。

(繼承來源 ToolStripControlHost)
ShowKeyboardCues

取得值,指出要顯示還是隱藏快速鍵。

(繼承來源 ToolStripItem)
Site

取得或設定裝載控制項的站台。

(繼承來源 ToolStripControlHost)
Size

取得或設定 ToolStripItem 的大小。

(繼承來源 ToolStripControlHost)
Step

取得或設定當呼叫 ToolStripProgressBar 方法時要遞增目前 PerformStep() 值的數量。

Style

取得或設定 ToolStripProgressBar 的樣式。

Tag

取得或設定物件,其中包含有關此項目的資料。

(繼承來源 ToolStripItem)
Text

取得或設定顯示在 ToolStripProgressBar 上的文字。

TextAlign

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
TextDirection

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
TextImageRelation

這個屬性與這個類別無關。

(繼承來源 ToolStripControlHost)
ToolTipText

取得或設定顯示為控制項的 ToolTip 之文字。

(繼承來源 ToolStripItem)
Value

取得或設定目前 ToolStripProgressBar 的值。

Visible

取得或設定值,指出是否會顯示此項目。

(繼承來源 ToolStripItem)
Width

取得或設定 ToolStripItem 的寬度 (以像素為單位)。

(繼承來源 ToolStripItem)

方法

CreateAccessibilityInstance()

為控制項建立新的協助工具物件。

CreateAccessibilityInstance()

為控制項建立新的協助工具物件。

(繼承來源 ToolStripControlHost)
CreateObjRef(Type)

建立包含所有相關資訊的物件,這些資訊是產生用來與遠端物件通訊的所需 Proxy。

(繼承來源 MarshalByRefObject)
Dispose()

釋放 Component 所使用的所有資源。

(繼承來源 Component)
Dispose(Boolean)

釋放 ToolStripControlHost 所使用的 Unmanaged 資源,並選擇性地釋放 Managed 資源。

(繼承來源 ToolStripControlHost)
DoDragDrop(Object, DragDropEffects)

開始拖放作業。

(繼承來源 ToolStripItem)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

開始拖曳作業。

(繼承來源 ToolStripItem)
Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
Focus()

提供焦點給控制項。

(繼承來源 ToolStripControlHost)
GetCurrentParent()

擷取 ToolStrip,其為目前 ToolStripItem 的容器。

(繼承來源 ToolStripItem)
GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetLifetimeService()
已淘汰.

擷取控制這個執行個體存留期 (Lifetime) 原則的目前存留期服務物件。

(繼承來源 MarshalByRefObject)
GetPreferredSize(Size)

擷取可容納控制項之矩形區域的大小。

(繼承來源 ToolStripControlHost)
GetService(Type)

傳回表示 Component 或其 Container 所提供之服務的物件。

(繼承來源 Component)
GetType()

取得目前執行個體的 Type

(繼承來源 Object)
Increment(Int32)

以指定的數量來前移進度列的目前位置。

InitializeLifetimeService()
已淘汰.

取得存留期服務物件,以控制這個執行個體的存留期原則。

(繼承來源 MarshalByRefObject)
Invalidate()

ToolStripItem 的整個介面失效,並重新繪製它。

(繼承來源 ToolStripItem)
Invalidate(Rectangle)

藉由將 ToolStripItem 的指定區域加入 ToolStripItem 的更新區域的方式使指定區域失效 (更新區域會在下一次繪製作業中重新繪製),並使繪製訊息傳送至 ToolStripItem

(繼承來源 ToolStripItem)
IsInputChar(Char)

判斷字元是否為此項目所能識別的輸入字元。

(繼承來源 ToolStripItem)
IsInputKey(Keys)

判斷指定的按鍵是標準輸入按鍵或需要前置處理的特殊按鍵。

(繼承來源 ToolStripItem)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
MemberwiseClone(Boolean)

建立目前 MarshalByRefObject 物件的淺層複本。

(繼承來源 MarshalByRefObject)
OnAvailableChanged(EventArgs)

引發 AvailableChanged 事件。

(繼承來源 ToolStripItem)
OnBackColorChanged(EventArgs)

引發 BackColorChanged 事件。

(繼承來源 ToolStripItem)
OnBindingContextChanged(EventArgs)

引發 BindingContextChanged 事件。

(繼承來源 BindableComponent)
OnBoundsChanged()

發生於 Bounds 屬性變更時。

(繼承來源 ToolStripControlHost)
OnClick(EventArgs)

引發 Click 事件。

(繼承來源 ToolStripItem)
OnCommandCanExecuteChanged(EventArgs)

引發 CommandCanExecuteChanged 事件。

(繼承來源 ToolStripItem)
OnCommandChanged(EventArgs)

引發 CommandChanged 事件。

(繼承來源 ToolStripItem)
OnCommandParameterChanged(EventArgs)

引發 CommandParameterChanged 事件。

(繼承來源 ToolStripItem)
OnDisplayStyleChanged(EventArgs)

引發 DisplayStyleChanged 事件。

(繼承來源 ToolStripItem)
OnDoubleClick(EventArgs)

引發 DoubleClick 事件。

(繼承來源 ToolStripItem)
OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 ToolStripItem)
OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 ToolStripItem)
OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 ToolStripItem)
OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 ToolStripItem)
OnEnabledChanged(EventArgs)

引發 EnabledChanged 事件。

(繼承來源 ToolStripItem)
OnEnter(EventArgs)

引發 Enter 事件。

(繼承來源 ToolStripControlHost)
OnFontChanged(EventArgs)

引發 FontChanged 事件。

(繼承來源 ToolStripItem)
OnForeColorChanged(EventArgs)

引發 ForeColorChanged 事件。

(繼承來源 ToolStripItem)
OnGiveFeedback(GiveFeedbackEventArgs)

引發 GiveFeedback 事件。

(繼承來源 ToolStripItem)
OnGotFocus(EventArgs)

引發 GotFocus 事件。

(繼承來源 ToolStripControlHost)
OnHostedControlResize(EventArgs)

同步 (Synchronize) 控制項的調整大小作業與裝載控制項的調整大小作業。

(繼承來源 ToolStripControlHost)
OnKeyDown(KeyEventArgs)

引發 KeyDown 事件。

(繼承來源 ToolStripControlHost)
OnKeyPress(KeyPressEventArgs)

引發 KeyPress 事件。

(繼承來源 ToolStripControlHost)
OnKeyUp(KeyEventArgs)

引發 KeyUp 事件。

(繼承來源 ToolStripControlHost)
OnLayout(LayoutEventArgs)

引發 Layout 事件。

(繼承來源 ToolStripControlHost)
OnLeave(EventArgs)

引發 Leave 事件。

(繼承來源 ToolStripControlHost)
OnLocationChanged(EventArgs)

引發 LocationChanged 事件。

(繼承來源 ToolStripItem)
OnLostFocus(EventArgs)

引發 LostFocus 事件。

(繼承來源 ToolStripControlHost)
OnMouseDown(MouseEventArgs)

引發 MouseDown 事件。

(繼承來源 ToolStripItem)
OnMouseEnter(EventArgs)

引發 MouseEnter 事件。

(繼承來源 ToolStripItem)
OnMouseHover(EventArgs)

引發 MouseHover 事件。

(繼承來源 ToolStripItem)
OnMouseLeave(EventArgs)

引發 MouseLeave 事件。

(繼承來源 ToolStripItem)
OnMouseMove(MouseEventArgs)

引發 MouseMove 事件。

(繼承來源 ToolStripItem)
OnMouseUp(MouseEventArgs)

引發 MouseUp 事件。

(繼承來源 ToolStripItem)
OnOwnerChanged(EventArgs)

引發 OwnerChanged 事件。

(繼承來源 ToolStripItem)
OnOwnerFontChanged(EventArgs)

FontChanged 屬性已經在 Font 的父代上變更時,將會引發 ToolStripItem 事件。

(繼承來源 ToolStripItem)
OnPaint(PaintEventArgs)

引發 Paint 事件。

(繼承來源 ToolStripControlHost)
OnParentBackColorChanged(EventArgs)

引發 BackColorChanged 事件。

(繼承來源 ToolStripItem)
OnParentChanged(ToolStrip, ToolStrip)

引發 ParentChanged 事件。

(繼承來源 ToolStripControlHost)
OnParentEnabledChanged(EventArgs)

當此項目的容器之 EnabledChanged 屬性值變更時,會引發 Enabled 事件。

(繼承來源 ToolStripItem)
OnParentForeColorChanged(EventArgs)

引發 ForeColorChanged 事件。

(繼承來源 ToolStripItem)
OnParentRightToLeftChanged(EventArgs)

引發 RightToLeftChanged 事件。

(繼承來源 ToolStripItem)
OnQueryContinueDrag(QueryContinueDragEventArgs)

引發 QueryContinueDrag 事件。

(繼承來源 ToolStripItem)
OnRequestCommandExecute(EventArgs)

如果內容允許,請在 的內容 OnClick(EventArgs) 中呼叫 以叫 Execute(Object) 用。

(繼承來源 ToolStripItem)
OnRightToLeftChanged(EventArgs)

引發 RightToLeftChanged 事件。

(繼承來源 ToolStripItem)
OnRightToLeftLayoutChanged(EventArgs)

引發 RightToLeftLayoutChanged 事件。

OnSelectedChanged(EventArgs)

表示 StatusStrip 中所包含的 Windows 進度列控制項。

(繼承來源 ToolStripItem)
OnSubscribeControlEvents(Control)

從裝載控制項訂閱事件。

OnTextChanged(EventArgs)

引發 TextChanged 事件。

(繼承來源 ToolStripItem)
OnUnsubscribeControlEvents(Control)

從裝載控制項取消訂閱事件。

OnValidated(EventArgs)

引發 Validated 事件。

(繼承來源 ToolStripControlHost)
OnValidating(CancelEventArgs)

引發 Validating 事件。

(繼承來源 ToolStripControlHost)
OnVisibleChanged(EventArgs)

引發 VisibleChanged 事件。

(繼承來源 ToolStripItem)
PerformClick()

產生 ToolStripItemClick 事件。

(繼承來源 ToolStripItem)
PerformStep()

根據 Step 屬性所設定的量,在進度列上從目前位置前進到下一個位置。

ProcessCmdKey(Message, Keys)

處理命令按鍵。

(繼承來源 ToolStripControlHost)
ProcessDialogKey(Keys)

處理對話方塊按鍵。

(繼承來源 ToolStripControlHost)
ProcessMnemonic(Char)

處理助憶鍵字元。

(繼承來源 ToolStripControlHost)
ResetBackColor()

這個方法與這個類別無關。

(繼承來源 ToolStripControlHost)
ResetDisplayStyle()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetFont()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetForeColor()

這個方法與這個類別無關。

(繼承來源 ToolStripControlHost)
ResetImage()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetMargin()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetPadding()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetRightToLeft()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
ResetTextDirection()

這個方法與這個類別無關。

(繼承來源 ToolStripItem)
Select()

選取此項目。

(繼承來源 ToolStripItem)
SetBounds(Rectangle)

設定項目的大小和位置。

(繼承來源 ToolStripItem)
SetVisibleCore(Boolean)

ToolStripItem 設定為指定的可見狀態。

(繼承來源 ToolStripControlHost)
ToString()

傳回任何包含 Component 名稱的 String。 不應覆寫此方法。

(繼承來源 ToolStripItem)

事件

AvailableChanged

發生於 Available 屬性的值變更時。

(繼承來源 ToolStripItem)
BackColorChanged

發生於 BackColor 屬性的值變更時。

(繼承來源 ToolStripItem)
BindingContextChanged

發生于系結內容變更時。

(繼承來源 BindableComponent)
Click

發生於按一下 ToolStripItem 時。

(繼承來源 ToolStripItem)
CommandCanExecuteChanged

發生于指派給 Command 屬性之 ICommand 的狀態已變更時 CanExecute(Object)

(繼承來源 ToolStripItem)
CommandChanged

發生于指派 ICommandCommand 屬性已變更時。

(繼承來源 ToolStripItem)
CommandParameterChanged

發生於 CommandParameter 屬性的值已變更時。

(繼承來源 ToolStripItem)
DisplayStyleChanged

這個事件與這個類別無關。

(繼承來源 ToolStripControlHost)
Disposed

Dispose() 方法的呼叫處置元件時,就會發生。

(繼承來源 Component)
DoubleClick

發生於以滑鼠按兩下項目時。

(繼承來源 ToolStripItem)
DragDrop

發生於使用者拖曳項目以及釋放滑鼠按鈕時,表示項目應該放入這個項目中。

(繼承來源 ToolStripItem)
DragEnter

發生於使用者將項目拖入這個項目的工作區 (Client Area) 時。

(繼承來源 ToolStripItem)
DragLeave

發生於使用者拖曳項目並且滑鼠指標不再停留於這個項目的工作區上時。

(繼承來源 ToolStripItem)
DragOver

發生於使用者將項目拖過這個項目的工作區時。

(繼承來源 ToolStripItem)
EnabledChanged

發生於 Enabled 屬性值變更時。

(繼承來源 ToolStripItem)
Enter

發生於輸入裝載控制項時。

(繼承來源 ToolStripControlHost)
ForeColorChanged

發生在 ForeColor 屬性值變更時。

(繼承來源 ToolStripItem)
GiveFeedback

發生於拖曳作業時。

(繼承來源 ToolStripItem)
GotFocus

發生於裝載控制項取得焦點時。

(繼承來源 ToolStripControlHost)
KeyDown

這個事件與這個類別無關。

KeyPress

這個事件與這個類別無關。

KeyUp

這個事件與這個類別無關。

Leave

發生於輸入焦點離開裝載控制項時。

(繼承來源 ToolStripControlHost)
LocationChanged

這個事件與這個類別無關。

LostFocus

發生於裝載控制項失去焦點時。

(繼承來源 ToolStripControlHost)
MouseDown

發生於滑鼠指標位於此項目上方,並按下滑鼠按鍵時。

(繼承來源 ToolStripItem)
MouseEnter

發生於滑鼠指標進入此項目時。

(繼承來源 ToolStripItem)
MouseHover

發生於滑鼠指標停留在此項目上方時。

(繼承來源 ToolStripItem)
MouseLeave

發生於滑鼠指標離開此項目時。

(繼承來源 ToolStripItem)
MouseMove

發生於滑鼠指標移至此項目上方時。

(繼承來源 ToolStripItem)
MouseUp

發生於滑鼠指標位於此項目上方,並放開滑鼠按鍵時。

(繼承來源 ToolStripItem)
OwnerChanged

這個事件與這個類別無關。

Paint

發生於重新繪製此項目時。

(繼承來源 ToolStripItem)
QueryAccessibilityHelp

發生在可及性用戶端應用程式叫用 ToolStripItem 的說明時。

(繼承來源 ToolStripItem)
QueryContinueDrag

發生於拖放作業時,允許拖曳來源決定是否應取消拖放作業。

(繼承來源 ToolStripItem)
RightToLeftChanged

發生在 RightToLeft 屬性值變更時。

(繼承來源 ToolStripItem)
RightToLeftLayoutChanged

發生於 RightToLeftLayout 屬性的值變更時。

SelectedChanged

表示 StatusStrip 中所包含的 Windows 進度列控制項。

(繼承來源 ToolStripItem)
TextChanged

這個事件與這個類別無關。

Validated

這個事件與這個類別無關。

Validating

這個事件與這個類別無關。

VisibleChanged

發生於 Visible 屬性的值變更時。

(繼承來源 ToolStripItem)

明確介面實作

IDropTarget.OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 ToolStripItem)
IDropTarget.OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 ToolStripItem)
IDropTarget.OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 ToolStripItem)
IDropTarget.OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 ToolStripItem)

適用於

另請參閱