BindingNavigator 类

定义

表示窗体上绑定到数据的控件的导航和操作用户界面 (UI)。

public ref class BindingNavigator : System::Windows::Forms::ToolStrip, System::ComponentModel::ISupportInitialize
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class BindingNavigator : System.Windows.Forms.ToolStrip, System.ComponentModel.ISupportInitialize
public class BindingNavigator : System.Windows.Forms.ToolStrip, System.ComponentModel.ISupportInitialize
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type BindingNavigator = class
    inherit ToolStrip
    interface ISupportInitialize
type BindingNavigator = class
    inherit ToolStrip
    interface ISupportInitialize
Public Class BindingNavigator
Inherits ToolStrip
Implements ISupportInitialize
继承
属性
实现

示例

下面的代码示例演示如何使用 BindingNavigator 控件在数据集中移动。 集合包含在 DataView 中,后者使用 BindingSource 组件绑定到 TextBox 控件。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Data.SqlClient;
using System.Windows.Forms;

// This form demonstrates using a BindingNavigator to display 
// rows from a database query sequentially.
public class Form1 : Form
{
    // This is the BindingNavigator that allows the user
    // to navigate through the rows in a DataSet.
    BindingNavigator customersBindingNavigator = new BindingNavigator(true);

    // This is the BindingSource that provides data for
    // the Textbox control.
    BindingSource customersBindingSource = new BindingSource();

    // This is the TextBox control that displays the CompanyName
    // field from the DataSet.
    TextBox companyNameTextBox = new TextBox();

    public Form1()
    {
        // Set up the BindingSource component.
        this.customersBindingNavigator.BindingSource = this.customersBindingSource;
        this.customersBindingNavigator.Dock = DockStyle.Top;
        this.Controls.Add(this.customersBindingNavigator);

        // Set up the TextBox control for displaying company names.
        this.companyNameTextBox.Dock = DockStyle.Bottom;
        this.Controls.Add(this.companyNameTextBox);

        // Set up the form.
        this.Size = new Size(800, 200);
        this.Load += new EventHandler(Form1_Load);
    }

    void Form1_Load(object sender, EventArgs e)
    {
        // Open a connection to the database.
        // Replace the value of connectString with a valid 
        // connection string to a Northwind database accessible 
        // to your system.
        string connectString =
            "Integrated Security=SSPI;Persist Security Info=False;" +
            "Initial Catalog=Northwind;Data Source=localhost";
        
        using (SqlConnection connection = new SqlConnection(connectString))
        {

            SqlDataAdapter dataAdapter1 = 
                new SqlDataAdapter(new SqlCommand("Select * From Customers",connection));
            DataSet ds = new DataSet("Northwind Customers");
            ds.Tables.Add("Customers");
            dataAdapter1.Fill(ds.Tables["Customers"]);
            
            // Assign the DataSet as the DataSource for the BindingSource.
            this.customersBindingSource.DataSource = ds.Tables["Customers"];

            // Bind the CompanyName field to the TextBox control.
            this.companyNameTextBox.DataBindings.Add(
                new Binding("Text",
                this.customersBindingSource,
                "CompanyName",
                true));
        }
    }

    [STAThread]
    public static void Main()
    {
        Application.EnableVisualStyles();
        Application.Run(new Form1());
    }
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Data.SqlClient
Imports System.Windows.Forms


' This form demonstrates using a BindingNavigator to display 
' rows from a database query sequentially.
Public Class Form1
    Inherits Form
    ' This is the BindingNavigator that allows the user
    ' to navigate through the rows in a DataSet.
    Private customersBindingNavigator As New BindingNavigator(True)

    ' This is the BindingSource that provides data for
    ' the Textbox control.
    Private customersBindingSource As New BindingSource()

    ' This is the TextBox control that displays the CompanyName
    ' field from the DataSet.
    Private companyNameTextBox As New TextBox()


    Public Sub New()
        ' Set up the BindingSource component.
        Me.customersBindingNavigator.BindingSource = Me.customersBindingSource
        Me.customersBindingNavigator.Dock = DockStyle.Top
        Me.Controls.Add(Me.customersBindingNavigator)

        ' Set up the TextBox control for displaying company names.
        Me.companyNameTextBox.Dock = DockStyle.Bottom
        Me.Controls.Add(Me.companyNameTextBox)

        ' Set up the form.
        Me.Size = New Size(800, 200)
        AddHandler Me.Load, AddressOf Form1_Load

    End Sub


    Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
        ' Open a connection to the database.
        ' Replace the value of connectString with a valid 
        ' connection string to a Northwind database accessible 
        ' to your system.
        Dim connectString As String = _
            "Integrated Security=SSPI;Persist Security Info=False;" & _
            "Initial Catalog=Northwind;Data Source=localhost"

        Dim connection As New SqlConnection(connectString)
        Try

            Dim dataAdapter1 As New SqlDataAdapter( _
                New SqlCommand("Select * From Customers", connection))
            Dim ds As New DataSet("Northwind Customers")
            ds.Tables.Add("Customers")
            dataAdapter1.Fill(ds.Tables("Customers"))

            ' Assign the DataSet as the DataSource for the BindingSource.
            Me.customersBindingSource.DataSource = ds.Tables("Customers")

            ' Bind the CompanyName field to the TextBox control.
            Me.companyNameTextBox.DataBindings.Add(New Binding("Text", _
                Me.customersBindingSource, "CompanyName", True))
        Finally
            connection.Dispose()
        End Try

    End Sub


    <STAThread()> _
    Public Shared Sub Main()
        Application.EnableVisualStyles()
        Application.Run(New Form1())

    End Sub
End Class

注解

控件 BindingNavigator 表示在窗体上导航和操作数据的标准化方法。 在大多数情况下,会与BindingSource控件配对,BindingNavigator以在窗体上移动数据记录并与之交互。 在这些情况下, 属性 BindingSource 设置为充当数据源的关联 System.Windows.Forms.BindingSource 组件。

默认情况下, BindingNavigator 控件的用户界面 (UI) 由一系列 ToolStrip 按钮、文本框和静态文本元素组成,用于最常见的数据相关操作,例如添加数据、删除数据以及浏览数据。 这些控件中的每一个都可以通过控件的 BindingNavigator 关联成员进行检索或设置。 同样,类中 BindingSource 还有一对一的对应关系,这些成员以编程方式执行相同的功能,如下表所示。

UI 控件 BindingNavigator 成员 BindingSource 成员
首先移动 MoveFirstItem MoveFirst
移动上一个 MovePreviousItem MovePrevious
当前位置 PositionItem Current
Count CountItem Count
下一步移动 MoveNextItem MoveNext
最后移动 MoveLastItem MoveLast
添加新项 AddNewItem AddNew
删除 DeleteItem RemoveCurrent

BindingNavigator将控件添加到窗体并将其绑定到数据源(如 BindingSource)将自动建立此表中的关系。

可以使用以下方法之一自定义此工具栏:

构造函数

BindingNavigator()

初始化 BindingNavigator 类的新实例。

BindingNavigator(BindingSource)

用指定的 BindingNavigator 作为数据源来初始化 BindingSource 类的新实例。

BindingNavigator(Boolean)

初始化 BindingNavigator 类的新实例,指示是否显示标准的导航用户界面 (UI)。

BindingNavigator(IContainer)

初始化 BindingNavigator 类的新实例,并将此新实例添加到指定容器。

字段

ScrollStateAutoScrolling

确定 AutoScroll 属性的值。

(继承自 ScrollableControl)
ScrollStateFullDrag

确定用户是否启用了全窗口拖动。

(继承自 ScrollableControl)
ScrollStateHScrollVisible

确定 HScroll 属性的值是否设置为 true

(继承自 ScrollableControl)
ScrollStateUserHasScrolled

确定用户是否滚动了 ScrollableControl 控件。

(继承自 ScrollableControl)
ScrollStateVScrollVisible

确定 VScroll 属性的值是否设置为 true

(继承自 ScrollableControl)

属性

AccessibilityObject

获取分配给该控件的 AccessibleObject

(继承自 Control)
AccessibleDefaultActionDescription

获取或设置控件的默认操作说明以供具有辅助功能的客户端应用程序使用。

(继承自 Control)
AccessibleDescription

获取或设置辅助功能客户端应用程序使用的控件说明。

(继承自 Control)
AccessibleName

获取或设置辅助功能客户端应用程序所使用的控件名称。

(继承自 Control)
AccessibleRole

获取或设置控件的辅助性角色。

(继承自 Control)
AddNewItem

获取或设置表示“新增”按钮的 ToolStripItem

AllowDrop

获取或设置一个值,该值指示是否通过你实现的事件来处理拖放和项重新排序。

(继承自 ToolStrip)
AllowItemReorder

获取或设置一个用于指示是否专门由 ToolStrip 类处理拖放和项重新排序操作的值。

(继承自 ToolStrip)
AllowMerge

获取或设置一个值,该值指示能否将多个 MenuStripToolStripDropDownMenuToolStripMenuItem 及其他类型进行组合。

(继承自 ToolStrip)
Anchor

获取或设置 ToolStrip 要绑定到的容器的边缘,并确定 ToolStrip 如何随其父级调整大小。

(继承自 ToolStrip)
AutoScroll

此属性与此类无关。

(继承自 ToolStrip)
AutoScrollMargin

此属性与此类无关。

(继承自 ToolStrip)
AutoScrollMinSize

此属性与此类无关。

(继承自 ToolStrip)
AutoScrollOffset

获取或设置一个值,该值指示在 ScrollControlIntoView(Control) 中将控件滚动到何处。

(继承自 Control)
AutoScrollPosition

此属性与此类无关。

(继承自 ToolStrip)
AutoSize

获取或设置一个值,该值指示是否自动调整控件的大小以显示其完整内容。

(继承自 ToolStrip)
BackColor

获取或设置 ToolStrip 的背景色。

(继承自 ToolStrip)
BackgroundImage

获取或设置在控件中显示的背景图像。

(继承自 Control)
BackgroundImageLayout

获取或设置在 ImageLayout 枚举中定义的背景图像布局。

(继承自 Control)
BindingContext

获取或设置 ToolStrip 的绑定上下文。

(继承自 ToolStrip)
BindingSource

获取或设置 BindingSource 组件,它是数据的来源。

Bottom

获取控件下边缘与其容器的工作区上边缘之间的距离(以像素为单位)。

(继承自 Control)
Bounds

获取或设置控件(包括其非工作区元素)相对于其父控件的大小和位置(以像素为单位)。

(继承自 Control)
CanEnableIme

获取一个用以指示是否可以将 ImeMode 属性设置为活动值的值,以启用 IME 支持。

(继承自 Control)
CanFocus

获取一个值,该值指示控件是否可以接收焦点。

(继承自 Control)
CanOverflow

获取或设置一个值,该值指示是否可以将 ToolStrip 中的项发送到溢出菜单。

(继承自 ToolStrip)
CanRaiseEvents

确定是否可以在控件上引发事件。

(继承自 Control)
CanSelect

获取一个值,该值指示是否可以选中控件。

(继承自 Control)
Capture

获取或设置一个值,该值指示控件是否已捕获鼠标。

(继承自 Control)
CausesValidation

获取或设置一个值,该值指示 ToolStrip 是否会引起在任何需要在接收到焦点时执行验证的控件上执行验证。

(继承自 ToolStrip)
ClientRectangle

获取表示控件的工作区的矩形。

(继承自 Control)
ClientSize

获取或设置控件的工作区的高度和宽度。

(继承自 Control)
CompanyName

获取包含控件的应用程序的公司名称或创建者。

(继承自 Control)
Container

获取包含 IContainerComponent

(继承自 Component)
ContainsFocus

获取一个值,该值指示控件或它的一个子控件当前是否有输入焦点。

(继承自 Control)
ContextMenu

获取或设置与控件关联的快捷菜单。

(继承自 Control)
ContextMenuStrip

获取或设置与此控件关联的 ContextMenuStrip

(继承自 Control)
Controls

此属性与此类无关。

(继承自 ToolStrip)
CountItem

获取或设置 ToolStripItem,它显示关联的 BindingSource 中的总项数。

CountItemFormat

获取或设置用于设置在 CountItem 控件中显示的信息的格式的字符串。

Created

获取一个值,该值指示控件是否已经创建。

(继承自 Control)
CreateParams

获取创建控件句柄时所需要的创建参数。

(继承自 ScrollableControl)
Cursor

获取或设置当鼠标指针放置在 ToolStrip 上时显示的光标。

(继承自 ToolStrip)
DataBindings

为该控件获取数据绑定。

(继承自 Control)
DataContext

获取或设置用于数据绑定的数据上下文。 这是一个环境属性。

(继承自 Control)
DefaultCursor

获取或设置控件的默认光标。

(继承自 Control)
DefaultDock

获取 ToolStrip 的停靠位置,以指示哪些边框停靠到容器上。

(继承自 ToolStrip)
DefaultDropDownDirection

获取或设置一个值,该值表示 ToolStripDropDown 控件相对于 ToolStrip 的默认显示方向。

(继承自 ToolStrip)
DefaultGripMargin

获取大小调整手柄和 ToolStrip 的边缘之间的默认间距(以像素为单位)。

(继承自 ToolStrip)
DefaultImeMode

获取控件支持的默认输入法编辑器 (IME) 模式。

(继承自 Control)
DefaultMargin

获取 ToolStripToolStripContainer 之间的间距(以像素为单位)。

(继承自 ToolStrip)
DefaultMaximumSize

获取以像素为单位的长度和高度,此长度和高度被指定为控件的默认最大大小。

(继承自 Control)
DefaultMinimumSize

获取以像素为单位的长度和高度,此长度和高度被指定为控件的默认最小大小。

(继承自 Control)
DefaultPadding

获取 ToolStrip 的内容的内部间距(以像素为单位)。

(继承自 ToolStrip)
DefaultShowItemToolTips

获取一个值,该值表示是否为 ToolStrip 默认显示工具提示。

(继承自 ToolStrip)
DefaultSize

获取 ToolStrip 的默认大小。

(继承自 ToolStrip)
DeleteItem

获取或设置与“删除”功能关联的 ToolStripItem

DesignMode

获取一个值,用以指示 Component 当前是否处于设计模式。

(继承自 Component)
DeviceDpi

获取显示当前控件的显示设备的 DPI 值。

(继承自 Control)
DisplayedItems

获取当前在 ToolStrip 上显示的项的子集,其中包括自动添加到 ToolStrip 中的项。

(继承自 ToolStrip)
DisplayRectangle

检索当前显示矩形。

(继承自 ToolStrip)
Disposing

获取一个值,该值指示 Control 基类是否在释放进程中。

(继承自 Control)
Dock

获取或设置要停靠在其父控件上的 ToolStrip 边框,并确定 ToolStrip 如何随其父控件一起调整大小。

(继承自 ToolStrip)
DockPadding

获取控件的所有边缘的停靠边距设置。

(继承自 ScrollableControl)
DoubleBuffered

获取或设置一个值,该值指示此控件是否应使用辅助缓冲区重绘其图面,以减少或避免闪烁。

(继承自 Control)
Enabled

获取或设置一个值,该值指示控件是否可以对用户交互作出响应。

(继承自 Control)
Events

获取附加到此 Component 的事件处理程序的列表。

(继承自 Component)
Focused

获取一个值,该值指示控件是否有输入焦点。

(继承自 Control)
Font

获取或设置用于显示控件中的文本的字体。

(继承自 ToolStrip)
FontHeight

获取或设置控件的字体的高度。

(继承自 Control)
ForeColor

获取或设置 ToolStrip 的前景色。

(继承自 ToolStrip)
GripDisplayStyle

获取 ToolStrip 移动手柄的方向。

(继承自 ToolStrip)
GripMargin

获取或设置 ToolStrip 移动手柄周围的空间。

(继承自 ToolStrip)
GripRectangle

获取 ToolStrip 移动手柄的边界。

(继承自 ToolStrip)
GripStyle

获取或设置 ToolStrip 移动手柄是可见还是隐藏。

(继承自 ToolStrip)
Handle

获取控件绑定到的窗口句柄。

(继承自 Control)
HasChildren

此属性与此类无关。

(继承自 ToolStrip)
Height

获取或设置控件的高度。

(继承自 Control)
HorizontalScroll

此属性与此类无关。

(继承自 ToolStrip)
HScroll

获取或设置一个值,该值指示水平滚动条是否可见。

(继承自 ScrollableControl)
ImageList

获取或设置包含 ToolStrip 项上显示的图像的图像列表。

(继承自 ToolStrip)
ImageScalingSize

获取或设置 ToolStrip 上所用图像的大小(以像素为单位)。

(继承自 ToolStrip)
ImeMode

获取或设置控件的输入法编辑器 (IME) 模式。

(继承自 Control)
ImeModeBase

获取或设置控件的 IME 模式。

(继承自 Control)
InvokeRequired

获取一个值,该值指示调用方在对控件进行方法调用时是否必须调用 Invoke 方法,因为调用方位于创建控件所在的线程以外的线程中。

(继承自 Control)
IsAccessible

获取或设置一个值,该值指示控件对辅助功能应用程序是否可见。

(继承自 Control)
IsAncestorSiteInDesignMode

指示此控件的上级之一是否位于 DesignMode 中。 此属性为只读。

(继承自 Control)
IsCurrentlyDragging

获取一个值,该值指示用户当前是否正在将 ToolStrip 从一个 ToolStripContainer 移到另一个。

(继承自 ToolStrip)
IsDisposed

获取一个值,该值指示控件是否已经被释放。

(继承自 Control)
IsDropDown

获取一个值,该值指示 ToolStrip 是否为 ToolStripDropDown 控件。

(继承自 ToolStrip)
IsHandleCreated

获取一个值,该值指示控件是否有与它关联的句柄。

(继承自 Control)
IsMirrored

获取一个值,该值指示此控件是否为镜像控件。

(继承自 Control)
Items

获取属于 ToolStrip 的所有项。

(继承自 ToolStrip)
LayoutEngine

将引用传递给由布局引擎接口返回的缓存 LayoutEngine

(继承自 ToolStrip)
LayoutSettings

获取或设置布局方案特征。

(继承自 ToolStrip)
LayoutStyle

获取或设置一个值,该值指示 ToolStrip 如何对项集合进行布局。

(继承自 ToolStrip)
Left

获取或设置控件左边缘与其容器的工作区左边缘之间的距离(以像素为单位)。

(继承自 Control)
Location

获取或设置该控件的左上角相对于其容器的左上角的坐标。

(继承自 Control)
Margin

获取或设置控件之间的空间。

(继承自 Control)
MaximumSize

获取或设置大小,该大小是 GetPreferredSize(Size) 可以指定的上限。

(继承自 Control)
MaxItemSize

获取 ToolStrip 的最大高度和宽度,以像素为单位。

(继承自 ToolStrip)
MinimumSize

获取或设置大小,该大小是 GetPreferredSize(Size) 可以指定的下限。

(继承自 Control)
MoveFirstItem

获取或设置与“移到第一个”功能关联的 ToolStripItem

MoveLastItem

获取或设置与“移到最后一个”功能关联的 ToolStripItem

MoveNextItem

获取或设置与“移到下一个”功能关联的 ToolStripItem

MovePreviousItem

获取或设置与“移到上一个”功能关联的 ToolStripItem

Name

获取或设置控件的名称。

(继承自 Control)
Orientation

获取 ToolStripPanel 的方向。

(继承自 ToolStrip)
OverflowButton

获取 ToolStripItem,它是启用了溢出的 ToolStrip 的“溢出”按钮。

(继承自 ToolStrip)
Padding

获取或设置控件内的空白。

(继承自 Control)
Parent

获取或设置控件的父容器。

(继承自 Control)
PositionItem

获取或设置 ToolStripItem,它显示 BindingSource 中的当前位置。

PreferredSize

获取可以容纳控件的矩形区域的大小。

(继承自 Control)
ProductName

获取包含控件的程序集的产品名称。

(继承自 Control)
ProductVersion

获取包含控件的程序集的版本。

(继承自 Control)
RecreatingHandle

获取一个值,该值指示控件当前是否在重新创建其句柄。

(继承自 Control)
Region

获取或设置与控件关联的窗口区域。

(继承自 Control)
Renderer

获取或设置用于自定义 ToolStripRenderer 的外观的 ToolStrip

(继承自 ToolStrip)
RenderMode

获取或设置一个值,该值指示将把哪种视觉样式应用到 ToolStrip

(继承自 ToolStrip)
RenderRightToLeft
已过时.
已过时.

此属性现已过时。

(继承自 Control)
ResizeRedraw

获取或设置一个值,该值指示控件在调整大小时是否重绘自己。

(继承自 Control)
Right

获取控件右边缘与其容器的工作区左边缘之间的距离(以像素为单位)。

(继承自 Control)
RightToLeft

获取或设置一个值,该值指示是否将控件的元素对齐以支持使用从右向左的字体的区域设置。

(继承自 Control)
ScaleChildren

获取一个值,该值确定子控件的缩放。

(继承自 Control)
ShowFocusCues

获取一个值,该值指示控件是否应显示聚焦框。

(继承自 Control)
ShowItemToolTips

获取或设置一个值,该值指示是否在 ToolStrip 项上显示工具提示。

(继承自 ToolStrip)
ShowKeyboardCues

获取一个值,该值指示用户界面是否处于适当的状态以显示或隐藏键盘快捷键。

(继承自 Control)
Site

获取或设置控件的站点。

(继承自 Control)
Size

获取或设置控件的高度和宽度。

(继承自 Control)
Stretch

获取或设置一个值,该值指示 ToolStripToolStripContainer 中是否从一端拉伸到另一端。

(继承自 ToolStrip)
TabIndex

获取或设置控件在其容器内的 Tab 键顺序。

(继承自 Control)
TabStop

获取或设置一个值,该值指示用户能否使用 Tab 键为 ToolStrip 中的项提供焦点。

(继承自 ToolStrip)
Tag

获取或设置包含有关控件的数据的对象。

(继承自 Control)
Text

获取或设置与此控件关联的文本。

(继承自 Control)
TextDirection

获取或设置在 ToolStrip 上绘制文本的方向。

(继承自 ToolStrip)
Top

获取或设置控件上边缘与其容器的工作区上边缘之间的距离(以像素为单位)。

(继承自 Control)
TopLevelControl

获取没有另一个 Windows 窗体控件作为其父级的父控件。 通常,这是控件所在的最外面的 Form

(继承自 Control)
UseWaitCursor

获取或设置一个值,该值指示是否将等待光标用于当前控件以及所有子控件。

(继承自 Control)
VerticalScroll

此属性与此类无关。

(继承自 ToolStrip)
Visible

获取或设置一个值,该值指示是否显示该控件及其所有子控件。

(继承自 Control)
VScroll

获取或设置一个值,该值指示垂直滚动条是否可见。

(继承自 ScrollableControl)
Width

获取或设置控件的宽度。

(继承自 Control)
WindowTarget

此属性与此类无关。

(继承自 Control)

方法

AccessibilityNotifyClients(AccessibleEvents, Int32)

就指定子控件的指定 AccessibleEvents 通知辅助功能客户端应用程序。

(继承自 Control)
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

就指定子控件的指定 AccessibleEvents 通知辅助功能客户端应用程序。

(继承自 Control)
AddStandardItems()

将一组标准导航项添加到 BindingNavigator 控件。

AdjustFormScrollbars(Boolean)

根据当前控件位置和当前所选控件调整容器中的滚动条。

(继承自 ScrollableControl)
BeginInit()

在初始化组件的过程中禁用对 ToolStripItemBindingNavigator 控件的更新。

BeginInvoke(Action)

在创建控件的基础句柄所在线程上异步执行指定委托。

(继承自 Control)
BeginInvoke(Delegate)

在创建控件的基础句柄所在线程上异步执行指定委托。

(继承自 Control)
BeginInvoke(Delegate, Object[])

在创建控件的基础句柄所在线程上,用指定的自变量异步执行指定委托。

(继承自 Control)
BringToFront()

将控件带到 Z 顺序的前面。

(继承自 Control)
Contains(Control)

检索一个值,该值指示指定控件是否为一个控件的子控件。

(继承自 Control)
CreateAccessibilityInstance()

ToolStrip 项创建新的辅助功能对象。

(继承自 ToolStrip)
CreateControl()

强制创建可见控件,包括创建句柄和任何可见子控件。

(继承自 Control)
CreateControlsInstance()

为控件创建控件集合的新实例。

(继承自 ToolStrip)
CreateDefaultItem(String, Image, EventHandler)

在新 ToolStrip 实例上使用指定文本、图像和事件处理程序创建默认 ToolStripItem

(继承自 ToolStrip)
CreateGraphics()

为控件创建 Graphics

(继承自 Control)
CreateHandle()

为该控件创建句柄。

(继承自 Control)
CreateLayoutSettings(ToolStripLayoutStyle)

ToolStrip 指定可视化排列。

(继承自 ToolStrip)
CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。

(继承自 MarshalByRefObject)
DefWndProc(Message)

向默认窗口过程发送指定消息。

(继承自 Control)
DestroyHandle()

毁坏与该控件关联的句柄。

(继承自 Control)
Dispose()

释放由 Component 使用的所有资源。

(继承自 Component)
Dispose(Boolean)

释放由 BindingNavigator 占用的非托管资源,还可以另外再释放托管资源。

DoDragDrop(Object, DragDropEffects)

开始拖放操作。

(继承自 Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

开始拖动操作。

(继承自 Control)
DrawToBitmap(Bitmap, Rectangle)

支持对指定位图的呈现。

(继承自 Control)
EndInit()

在结束对组件的初始化后启用对 ToolStripItemBindingNavigator 控件的更新。

EndInvoke(IAsyncResult)

检索由传递的 IAsyncResult 表示的异步操作的返回值。

(继承自 Control)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
FindForm()

检索控件所在的窗体。

(继承自 Control)
Focus()

为控件设置输入焦点。

(继承自 Control)
GetAccessibilityObjectById(Int32)

检索指定的 AccessibleObject

(继承自 Control)
GetAutoSizeMode()

检索一个值,该值指示当启用控件的 AutoSize 属性时控件的行为方式。

(继承自 Control)
GetChildAtPoint(Point)

此方法与此类无关。

(继承自 ToolStrip)
GetChildAtPoint(Point, GetChildAtPointSkip)

此方法与此类无关。

(继承自 ToolStrip)
GetContainerControl()

沿着控件的父控件链向上,返回下一个 ContainerControl

(继承自 Control)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetItemAt(Int32, Int32)

返回位于 ToolStrip 工作区的指定 X 坐标和 Y 坐标的项。

(继承自 ToolStrip)
GetItemAt(Point)

返回位于 ToolStrip 的工作区中指定点的项。

(继承自 ToolStrip)
GetLifetimeService()
已过时.

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetNextControl(Control, Boolean)

按照子控件的 Tab 键顺序向前或向后检索下一个控件。

(继承自 Control)
GetNextItem(ToolStripItem, ArrowDirection)

通过从指定参考点沿指定方向移动来检索下一个 ToolStripItem

(继承自 ToolStrip)
GetPreferredSize(Size)

检索适合控件的矩形区域的大小。

(继承自 Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

检索缩放控件时的边界。

(继承自 Control)
GetScrollState(Int32)

确定是否设置了指定的标志。

(继承自 ScrollableControl)
GetService(Type)

返回一个对象,该对象表示由 Component 或它的 Container 提供的服务。

(继承自 Component)
GetStyle(ControlStyles)

为控件检索指定控件样式位的值。

(继承自 Control)
GetTopLevel()

确定控件是否是顶级控件。

(继承自 Control)
GetType()

获取当前实例的 Type

(继承自 Object)
Hide()

对用户隐藏控件。

(继承自 Control)
InitializeLifetimeService()
已过时.

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
InitLayout()

在将控件添加到另一个容器之后调用。

(继承自 Control)
Invalidate()

使控件的整个图面无效并导致重绘控件。

(继承自 Control)
Invalidate(Boolean)

使控件的特定区域无效并向控件发送绘制消息。 还可以使分配给该控件的子控件无效。

(继承自 Control)
Invalidate(Rectangle)

使控件的指定区域无效(将其添加到控件的更新区域,下次绘制操作时将重新绘制更新区域),并向控件发送绘制消息。

(继承自 Control)
Invalidate(Rectangle, Boolean)

使控件的指定区域无效(将其添加到控件的更新区域,下次绘制操作时将重新绘制更新区域),并向控件发送绘制消息。 还可以使分配给该控件的子控件无效。

(继承自 Control)
Invalidate(Region)

使控件的指定区域无效(将其添加到控件的更新区域,下次绘制操作时将重新绘制更新区域),并向控件发送绘制消息。

(继承自 Control)
Invalidate(Region, Boolean)

使控件的指定区域无效(将其添加到控件的更新区域,下次绘制操作时将重新绘制更新区域),并向控件发送绘制消息。 还可以使分配给该控件的子控件无效。

(继承自 Control)
Invoke(Action)

在拥有此控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
Invoke(Delegate)

在拥有此控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
Invoke(Delegate, Object[])

在拥有控件的基础窗口句柄的线程上,用指定的参数列表执行指定委托。

(继承自 Control)
Invoke<T>(Func<T>)

在拥有此控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
InvokeGotFocus(Control, EventArgs)

为指定的控件引发 GotFocus 事件。

(继承自 Control)
InvokeLostFocus(Control, EventArgs)

为指定的控件引发 LostFocus 事件。

(继承自 Control)
InvokeOnClick(Control, EventArgs)

为指定的控件引发 Click 事件。

(继承自 Control)
InvokePaint(Control, PaintEventArgs)

为指定的控件引发 Paint 事件。

(继承自 Control)
InvokePaintBackground(Control, PaintEventArgs)

为指定的控件引发 PaintBackground 事件。

(继承自 Control)
IsInputChar(Char)

确定字符是否为该项可识别的输入字符。

(继承自 ToolStrip)
IsInputKey(Keys)

确定指定的键是常规输入键还是需要预处理的特殊键。

(继承自 ToolStrip)
LogicalToDeviceUnits(Int32)

将逻辑 DPI 值转换为它的等效 DeviceUnit DPI 值。

(继承自 Control)
LogicalToDeviceUnits(Size)

通过为当前 DPI 缩放小大并将其向下舍入为最接近的宽度和高度的整数值,将大小从逻辑单位转换为设备单位。

(继承自 Control)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
NotifyInvalidate(Rectangle)

引发 Invalidated 事件,其中带有要使之无效的控件的指定区域。

(继承自 Control)
OnAutoSizeChanged(EventArgs)

引发 AutoSizeChanged 事件。

(继承自 Control)
OnBackColorChanged(EventArgs)

引发 BackColorChanged 事件。

(继承自 Control)
OnBackgroundImageChanged(EventArgs)

引发 BackgroundImageChanged 事件。

(继承自 Control)
OnBackgroundImageLayoutChanged(EventArgs)

引发 BackgroundImageLayoutChanged 事件。

(继承自 Control)
OnBeginDrag(EventArgs)

引发 BeginDrag 事件。

(继承自 ToolStrip)
OnBindingContextChanged(EventArgs)

引发 BindingContextChanged 事件。

(继承自 Control)
OnCausesValidationChanged(EventArgs)

引发 CausesValidationChanged 事件。

(继承自 Control)
OnChangeUICues(UICuesEventArgs)

引发 ChangeUICues 事件。

(继承自 Control)
OnClick(EventArgs)

引发 Click 事件。

(继承自 Control)
OnClientSizeChanged(EventArgs)

引发 ClientSizeChanged 事件。

(继承自 Control)
OnContextMenuChanged(EventArgs)

引发 ContextMenuChanged 事件。

(继承自 Control)
OnContextMenuStripChanged(EventArgs)

引发 ContextMenuStripChanged 事件。

(继承自 Control)
OnControlAdded(ControlEventArgs)

引发 ControlAdded 事件。

(继承自 Control)
OnControlRemoved(ControlEventArgs)

引发 ControlRemoved 事件。

(继承自 Control)
OnCreateControl()

引发 CreateControl() 方法。

(继承自 Control)
OnCursorChanged(EventArgs)

引发 CursorChanged 事件。

(继承自 Control)
OnDataContextChanged(EventArgs)

表示窗体上绑定到数据的控件的导航和操作用户界面 (UI)。

(继承自 Control)
OnDockChanged(EventArgs)

引发 DockChanged 事件。

(继承自 ToolStrip)
OnDoubleClick(EventArgs)

引发 DoubleClick 事件。

(继承自 Control)
OnDpiChangedAfterParent(EventArgs)

引发 DpiChangedAfterParent 事件。

(继承自 Control)
OnDpiChangedBeforeParent(EventArgs)

引发 DpiChangedBeforeParent 事件。

(继承自 Control)
OnDragDrop(DragEventArgs)

引发 DragDrop 事件。

(继承自 Control)
OnDragEnter(DragEventArgs)

引发 DragEnter 事件。

(继承自 Control)
OnDragLeave(EventArgs)

引发 DragLeave 事件。

(继承自 Control)
OnDragOver(DragEventArgs)

引发 DragOver 事件。

(继承自 Control)
OnEnabledChanged(EventArgs)

引发 Enabled 事件。

(继承自 ToolStrip)
OnEndDrag(EventArgs)

引发 EndDrag 事件。

(继承自 ToolStrip)
OnEnter(EventArgs)

引发 Enter 事件。

(继承自 Control)
OnFontChanged(EventArgs)

引发 FontChanged 事件。

(继承自 ToolStrip)
OnForeColorChanged(EventArgs)

引发 ForeColorChanged 事件。

(继承自 Control)
OnGiveFeedback(GiveFeedbackEventArgs)

引发 GiveFeedback 事件。

(继承自 Control)
OnGotFocus(EventArgs)

引发 GotFocus 事件。

(继承自 Control)
OnHandleCreated(EventArgs)

引发 HandleCreated 事件。

(继承自 ToolStrip)
OnHandleDestroyed(EventArgs)

引发 HandleDestroyed 事件。

(继承自 ToolStrip)
OnHelpRequested(HelpEventArgs)

引发 HelpRequested 事件。

(继承自 Control)
OnImeModeChanged(EventArgs)

引发 ImeModeChanged 事件。

(继承自 Control)
OnInvalidated(InvalidateEventArgs)

引发 Invalidated 事件。

(继承自 ToolStrip)
OnItemAdded(ToolStripItemEventArgs)

引发 ItemAdded 事件。

(继承自 ToolStrip)
OnItemClicked(ToolStripItemClickedEventArgs)

引发 ItemClicked 事件。

(继承自 ToolStrip)
OnItemRemoved(ToolStripItemEventArgs)

引发 ItemRemoved 事件。

(继承自 ToolStrip)
OnKeyDown(KeyEventArgs)

引发 KeyDown 事件。

(继承自 Control)
OnKeyPress(KeyPressEventArgs)

引发 KeyPress 事件。

(继承自 Control)
OnKeyUp(KeyEventArgs)

引发 KeyUp 事件。

(继承自 Control)
OnLayout(LayoutEventArgs)

引发 Layout 事件。

(继承自 ToolStrip)
OnLayoutCompleted(EventArgs)

引发 LayoutCompleted 事件。

(继承自 ToolStrip)
OnLayoutStyleChanged(EventArgs)

引发 LayoutStyleChanged 事件。

(继承自 ToolStrip)
OnLeave(EventArgs)

引发 Leave 事件。

(继承自 ToolStrip)
OnLocationChanged(EventArgs)

引发 LocationChanged 事件。

(继承自 Control)
OnLostFocus(EventArgs)

引发 LostFocus 事件。

(继承自 ToolStrip)
OnMarginChanged(EventArgs)

引发 MarginChanged 事件。

(继承自 Control)
OnMouseCaptureChanged(EventArgs)

引发 MouseCaptureChanged 事件。

(继承自 ToolStrip)
OnMouseClick(MouseEventArgs)

引发 MouseClick 事件。

(继承自 Control)
OnMouseDoubleClick(MouseEventArgs)

引发 MouseDoubleClick 事件。

(继承自 Control)
OnMouseDown(MouseEventArgs)

引发 MouseDown 事件。

(继承自 ToolStrip)
OnMouseEnter(EventArgs)

引发 MouseEnter 事件。

(继承自 Control)
OnMouseHover(EventArgs)

引发 MouseHover 事件。

(继承自 Control)
OnMouseLeave(EventArgs)

引发 MouseLeave 事件。

(继承自 ToolStrip)
OnMouseMove(MouseEventArgs)

引发 MouseMove 事件。

(继承自 ToolStrip)
OnMouseUp(MouseEventArgs)

引发 MouseUp 事件。

(继承自 ToolStrip)
OnMouseWheel(MouseEventArgs)

引发 MouseWheel 事件。

(继承自 ScrollableControl)
OnMove(EventArgs)

引发 Move 事件。

(继承自 Control)
OnNotifyMessage(Message)

向控件通知 Windows 消息。

(继承自 Control)
OnPaddingChanged(EventArgs)

引发 PaddingChanged 事件。

(继承自 ScrollableControl)
OnPaint(PaintEventArgs)

引发 Paint 事件。

(继承自 ToolStrip)
OnPaintBackground(PaintEventArgs)

引发 Paint 背景的 ToolStrip 事件。

(继承自 ToolStrip)
OnPaintGrip(PaintEventArgs)

引发 PaintGrip 事件。

(继承自 ToolStrip)
OnParentBackColorChanged(EventArgs)

当控件容器的 BackColorChanged 属性值更改时,将引发 BackColor 事件。

(继承自 Control)
OnParentBackgroundImageChanged(EventArgs)

当控件容器的 BackgroundImageChanged 属性值更改时,将引发 BackgroundImage 事件。

(继承自 Control)
OnParentBindingContextChanged(EventArgs)

当控件容器的 BindingContextChanged 属性值更改时,将引发 BindingContext 事件。

(继承自 Control)
OnParentChanged(EventArgs)

引发 ParentChanged 事件。

(继承自 Control)
OnParentCursorChanged(EventArgs)

引发 CursorChanged 事件。

(继承自 Control)
OnParentDataContextChanged(EventArgs)

表示窗体上绑定到数据的控件的导航和操作用户界面 (UI)。

(继承自 Control)
OnParentEnabledChanged(EventArgs)

当控件容器的 EnabledChanged 属性值更改时,将引发 Enabled 事件。

(继承自 Control)
OnParentFontChanged(EventArgs)

当控件容器的 FontChanged 属性值更改时,将引发 Font 事件。

(继承自 Control)
OnParentForeColorChanged(EventArgs)

当控件容器的 ForeColorChanged 属性值更改时,将引发 ForeColor 事件。

(继承自 Control)
OnParentRightToLeftChanged(EventArgs)

当控件容器的 RightToLeftChanged 属性值更改时,将引发 RightToLeft 事件。

(继承自 Control)
OnParentVisibleChanged(EventArgs)

当控件容器的 VisibleChanged 属性值更改时,将引发 Visible 事件。

(继承自 Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

引发 PreviewKeyDown 事件。

(继承自 Control)
OnPrint(PaintEventArgs)

引发 Paint 事件。

(继承自 Control)
OnQueryContinueDrag(QueryContinueDragEventArgs)

引发 QueryContinueDrag 事件。

(继承自 Control)
OnRefreshItems()

引发 RefreshItems 事件。

OnRegionChanged(EventArgs)

引发 RegionChanged 事件。

(继承自 Control)
OnRendererChanged(EventArgs)

引发 RendererChanged 事件。

(继承自 ToolStrip)
OnResize(EventArgs)

引发 Resize 事件。

(继承自 Control)
OnRightToLeftChanged(EventArgs)

引发 RightToLeftChanged 事件。

(继承自 ToolStrip)
OnScroll(ScrollEventArgs)

引发 Scroll 事件。

(继承自 ToolStrip)
OnSizeChanged(EventArgs)

引发 SizeChanged 事件。

(继承自 Control)
OnStyleChanged(EventArgs)

引发 StyleChanged 事件。

(继承自 Control)
OnSystemColorsChanged(EventArgs)

引发 SystemColorsChanged 事件。

(继承自 Control)
OnTabIndexChanged(EventArgs)

引发 TabIndexChanged 事件。

(继承自 Control)
OnTabStopChanged(EventArgs)

引发 TabStopChanged 事件。

(继承自 ToolStrip)
OnTextChanged(EventArgs)

引发 TextChanged 事件。

(继承自 Control)
OnValidated(EventArgs)

引发 Validated 事件。

(继承自 Control)
OnValidating(CancelEventArgs)

引发 Validating 事件。

(继承自 Control)
OnVisibleChanged(EventArgs)

引发 VisibleChanged 事件。

(继承自 ToolStrip)
PerformLayout()

强制控件将布局逻辑应用于其所有子控件。

(继承自 Control)
PerformLayout(Control, String)

强制控件将布局逻辑应用于其所有子控件。

(继承自 Control)
PointToClient(Point)

将指定屏幕点的位置计算成工作区坐标。

(继承自 Control)
PointToScreen(Point)

将指定工作区点的位置计算成屏幕坐标。

(继承自 Control)
PreProcessControlMessage(Message)

在调度键盘或输入消息之前,在消息循环内对它们进行预处理。

(继承自 Control)
PreProcessMessage(Message)

在调度键盘或输入消息之前,在消息循环内对它们进行预处理。

(继承自 Control)
ProcessCmdKey(Message, Keys)

处理命令键。

(继承自 ToolStrip)
ProcessDialogChar(Char)

处理对话框字符。

(继承自 Control)
ProcessDialogKey(Keys)

处理对话框键。

(继承自 ToolStrip)
ProcessKeyEventArgs(Message)

处理键消息并生成适当的控件事件。

(继承自 Control)
ProcessKeyMessage(Message)

处理键盘消息。

(继承自 Control)
ProcessKeyPreview(Message)

预览键盘消息。

(继承自 Control)
ProcessMnemonic(Char)

处理助记键字符。

(继承自 ToolStrip)
RaiseDragEvent(Object, DragEventArgs)

引发适当的拖动事件。

(继承自 Control)
RaiseKeyEvent(Object, KeyEventArgs)

引发适当的键事件。

(继承自 Control)
RaiseMouseEvent(Object, MouseEventArgs)

引发适当的鼠标事件。

(继承自 Control)
RaisePaintEvent(Object, PaintEventArgs)

引发适当的绘画事件。

(继承自 Control)
RecreateHandle()

强制为控件重新创建句柄。

(继承自 Control)
RectangleToClient(Rectangle)

计算指定屏幕矩形的大小和位置(以工作区坐标表示)。

(继承自 Control)
RectangleToScreen(Rectangle)

计算指定工作区矩形的大小和位置(以屏幕坐标表示)。

(继承自 Control)
Refresh()

强制控件使其工作区无效并立即重绘自己和任何子控件。

(继承自 Control)
RefreshItemsCore()

刷新标准项的状态以反映数据的当前状态。

RescaleConstantsForDpi(Int32, Int32)

在派生类中重写时,处理在控件绘制中使用的任何幻术的重新缩放。

(继承自 ToolStrip)
ResetBackColor()

BackColor 属性重置为其默认值。

(继承自 Control)
ResetBindings()

使绑定到 BindingSource 的控件重新读取列表中的所有项,并刷新这些项的显示值。

(继承自 Control)
ResetCursor()

Cursor 属性重置为其默认值。

(继承自 Control)
ResetFont()

Font 属性重置为其默认值。

(继承自 Control)
ResetForeColor()

ForeColor 属性重置为其默认值。

(继承自 Control)
ResetImeMode()

ImeMode 属性重置为其默认值。

(继承自 Control)
ResetMinimumSize()

此方法与此类无关。

(继承自 ToolStrip)
ResetMouseEventArgs()

重置控件以处理 MouseLeave 事件。

(继承自 Control)
ResetRightToLeft()

RightToLeft 属性重置为其默认值。

(继承自 Control)
ResetText()

Text 属性重置为其默认值 (Empty)。

(继承自 Control)
RestoreFocus()

控制焦点的返回位置。

(继承自 ToolStrip)
ResumeLayout()

恢复正常的布局逻辑。

(继承自 Control)
ResumeLayout(Boolean)

恢复正常的布局逻辑,可以选择强制对挂起的布局请求立即进行布局。

(继承自 Control)
RtlTranslateAlignment(ContentAlignment)

将指定的 ContentAlignment 转换为相应的 ContentAlignment 以支持从右向左的文本。

(继承自 Control)
RtlTranslateAlignment(HorizontalAlignment)

将指定的 HorizontalAlignment 转换为相应的 HorizontalAlignment 以支持从右向左的文本。

(继承自 Control)
RtlTranslateAlignment(LeftRightAlignment)

将指定的 LeftRightAlignment 转换为相应的 LeftRightAlignment 以支持从右向左的文本。

(继承自 Control)
RtlTranslateContent(ContentAlignment)

将指定的 ContentAlignment 转换为相应的 ContentAlignment 以支持从右向左的文本。

(继承自 Control)
RtlTranslateHorizontal(HorizontalAlignment)

将指定的 HorizontalAlignment 转换为相应的 HorizontalAlignment 以支持从右向左的文本。

(继承自 Control)
RtlTranslateLeftRight(LeftRightAlignment)

将指定的 LeftRightAlignment 转换为相应的 LeftRightAlignment 以支持从右向左的文本。

(继承自 Control)
Scale(Single)
已过时.
已过时.

缩放控件和任何子控件。

(继承自 Control)
Scale(Single, Single)
已过时.
已过时.

缩放整个控件和任何子控件。

(继承自 Control)
Scale(SizeF)

按指定的比例因子缩放控件和所有子控件。

(继承自 Control)
ScaleBitmapLogicalToDevice(Bitmap)

发生 DPI 更改时,可以将逻辑位图值缩放到其等效设备单元值。

(继承自 Control)
ScaleControl(SizeF, BoundsSpecified)

缩放控件的位置、大小、空白和边距。

(继承自 ScrollableControl)
ScaleCore(Single, Single)

此方法与此类无关。

(继承自 ScrollableControl)
ScrollControlIntoView(Control)

将指定的子控件滚动到支持自动滚动的控件的视图中。

(继承自 ScrollableControl)
ScrollToControl(Control)

计算到指定子控件的滚动偏移量。

(继承自 ScrollableControl)
Select()

激活控件。

(继承自 Control)
Select(Boolean, Boolean)

激活子控件。 还可以指定从中选择控件的 Tab 键顺序的方向。

(继承自 ToolStrip)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

激活下一个控件。

(继承自 Control)
SendToBack()

将控件发送到 Z 顺序的后面。

(继承自 Control)
SetAutoScrollMargin(Int32, Int32)

此方法与此类无关。

(继承自 ToolStrip)
SetAutoSizeMode(AutoSizeMode)

设置一个值,该值指示当启用控件的 AutoSize 属性时控件的行为方式。

(继承自 Control)
SetBounds(Int32, Int32, Int32, Int32)

将控件的边界设置为指定位置和大小。

(继承自 Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

将控件的指定边界设置为指定位置和大小。

(继承自 Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

执行设置该控件的指定边界的工作。

(继承自 ToolStrip)
SetClientSizeCore(Int32, Int32)

设置控件的工作区的大小。

(继承自 Control)
SetDisplayedItems()

在完成布局后,重置显示的项和溢出项的集合。

(继承自 ToolStrip)
SetDisplayRectLocation(Int32, Int32)

将显示窗口定位到指定的值。

(继承自 ScrollableControl)
SetItemLocation(ToolStripItem, Point)

ToolStripItem 锚定到 ToolStrip 上的特定位置。

(继承自 ToolStrip)
SetScrollState(Int32, Boolean)

设置指定的滚动状态标志。

(继承自 ScrollableControl)
SetStyle(ControlStyles, Boolean)

将指定的 ControlStyles 标志设置为 truefalse

(继承自 Control)
SetTopLevel(Boolean)

将控件设置为顶级控件。

(继承自 Control)
SetVisibleCore(Boolean)

检索将 ToolStripItem 设置为指定可见性状态的值。

(继承自 ToolStrip)
Show()

向用户显示控件。

(继承自 Control)
SizeFromClientSize(Size)

确定整个控件(从控件工作区的高度和宽度起计算)的大小。

(继承自 Control)
SuspendLayout()

临时挂起控件的布局逻辑。

(继承自 Control)
ToString()

返回表示 ToolStrip 控件的字符串。

(继承自 ToolStrip)
Update()

使控件重绘其工作区内的无效区域。

(继承自 Control)
UpdateBounds()

用当前大小和位置更新控件的边界。

(继承自 Control)
UpdateBounds(Int32, Int32, Int32, Int32)

用指定大小和位置更新控件的边界。

(继承自 Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

用指定大小、位置和工作区的大小更新控件的边界。

(继承自 Control)
UpdateStyles()

强制将分配的样式重新应用到控件。

(继承自 Control)
UpdateZOrder()

按控件的父级的 Z 顺序更新控件。

(继承自 Control)
Validate()

导致进行窗体验证并返回指示验证是否成功的信息。

WndProc(Message)

处理 Windows 消息。

(继承自 ToolStrip)

事件

AutoSizeChanged

AutoSize 属性更改后发生。

(继承自 ToolStrip)
BackColorChanged

BackColor 属性的值更改时发生。

(继承自 Control)
BackgroundImageChanged

BackgroundImage 属性的值更改时发生。

(继承自 Control)
BackgroundImageLayoutChanged

BackgroundImageLayout 属性更改时发生。

(继承自 Control)
BeginDrag

当用户开始拖动 ToolStrip 控件时发生。

(继承自 ToolStrip)
BindingContextChanged

BindingContext 属性的值更改时发生。

(继承自 Control)
CausesValidationChanged

CausesValidation 属性更改时发生。

(继承自 ToolStrip)
ChangeUICues

焦点或键盘用户界面 (UI) 提示更改时发生。

(继承自 Control)
Click

在单击控件时发生。

(继承自 Control)
ClientSizeChanged

ClientSize 属性的值更改时发生。

(继承自 Control)
ContextMenuChanged

ContextMenu 属性的值更改时发生。

(继承自 Control)
ContextMenuStripChanged

ContextMenuStrip 属性的值更改时发生。

(继承自 Control)
ControlAdded

此事件与此类无关。

(继承自 ToolStrip)
ControlRemoved

此事件与此类无关。

(继承自 ToolStrip)
CursorChanged

Cursor 属性的值更改时发生。

(继承自 ToolStrip)
DataContextChanged

DataContext 属性的值更改时发生。

(继承自 Control)
Disposed

在通过调用 Dispose() 方法释放组件时发生。

(继承自 Component)
DockChanged

Dock 属性的值更改时发生。

(继承自 Control)
DoubleClick

在双击控件时发生。

(继承自 Control)
DpiChangedAfterParent

当父控件或窗体的 DPI 更改后,以编程方式更改控件的 DPI 设置时发生。

(继承自 Control)
DpiChangedBeforeParent

父控件或窗体的 DPI 更改事件发生前,以编程方式更改控件的 DPI 设置时发生。

(继承自 Control)
DragDrop

拖放操作完成时发生。

(继承自 Control)
DragEnter

在将对象拖入控件的边界时发生。

(继承自 Control)
DragLeave

将对象拖出控件的边界时发生。

(继承自 Control)
DragOver

在将对象拖到控件的边界上发生。

(继承自 Control)
EnabledChanged

Enabled 属性值更改后发生。

(继承自 Control)
EndDrag

当用户停止拖动 ToolStrip 控件时发生。

(继承自 ToolStrip)
Enter

进入控件时发生。

(继承自 Control)
FontChanged

Font 属性值更改时发生。

(继承自 Control)
ForeColorChanged

ForeColor 属性的值更改时发生。

(继承自 ToolStrip)
GiveFeedback

在执行拖动操作期间发生。

(继承自 Control)
GotFocus

在控件接收焦点时发生。

(继承自 Control)
HandleCreated

在为控件创建句柄时发生。

(继承自 Control)
HandleDestroyed

在控件的句柄处于销毁过程中时发生。

(继承自 Control)
HelpRequested

用户请求控件帮助时发生。

(继承自 Control)
ImeModeChanged

ImeMode 属性更改后发生。

(继承自 Control)
Invalidated

控件的显示要求重新绘制时发生。

(继承自 Control)
ItemAdded

当向 ToolStripItem 添加新的 ToolStripItemCollection 时发生。

(继承自 ToolStrip)
ItemClicked

在单击 ToolStripItem 时发生。

(继承自 ToolStrip)
ItemRemoved

当从 ToolStripItem 中移除 ToolStripItemCollection 时发生。

(继承自 ToolStrip)
KeyDown

在控件有焦点的情况下按下键时发生。

(继承自 Control)
KeyPress

在控件有焦点的情况下 字符、空格或退格键时发生。

(继承自 Control)
KeyUp

在控件有焦点的情况下释放键时发生。

(继承自 Control)
Layout

在控件应重新定位其子控件时发生。

(继承自 Control)
LayoutCompleted

ToolStrip 的布局完成时发生。

(继承自 ToolStrip)
LayoutStyleChanged

LayoutStyle 属性的值更改时发生。

(继承自 ToolStrip)
Leave

在输入焦点离开控件时发生。

(继承自 Control)
LocationChanged

Location 属性值更改后发生。

(继承自 Control)
LostFocus

在控件失去焦点时发生。

(继承自 Control)
MarginChanged

在控件边距更改时发生。

(继承自 Control)
MouseCaptureChanged

当控件失去鼠标捕获时发生。

(继承自 Control)
MouseClick

用鼠标单击控件时发生。

(继承自 Control)
MouseDoubleClick

用鼠标双击控件时发生。

(继承自 Control)
MouseDown

当鼠标指针位于控件上并按下鼠标键时发生。

(继承自 Control)
MouseEnter

在鼠标指针进入控件时发生。

(继承自 Control)
MouseHover

在鼠标指针停放在控件上时发生。

(继承自 Control)
MouseLeave

在鼠标指针离开控件时发生。

(继承自 Control)
MouseMove

在鼠标指针移到控件上时发生。

(继承自 Control)
MouseUp

在鼠标指针在控件上并释放鼠标键时发生。

(继承自 Control)
MouseWheel

在控件有焦点且鼠标轮移动时发生。

(继承自 Control)
Move

在移动控件时发生。

(继承自 Control)
PaddingChanged

在控件空白区更改时发生。

(继承自 Control)
Paint

在重绘控件时发生。

(继承自 Control)
PaintGrip

在绘制 ToolStrip 移动手柄时发生。

(继承自 ToolStrip)
ParentChanged

Parent 属性值更改时发生。

(继承自 Control)
PreviewKeyDown

在焦点位于此控件上的情况下,当有按键动作时发生(在 KeyDown 事件之前发生)。

(继承自 Control)
QueryAccessibilityHelp

AccessibleObject 为辅助功能应用程序提供帮助时发生。

(继承自 Control)
QueryContinueDrag

在拖放操作期间发生,并且允许拖动源确定是否应取消拖放操作。

(继承自 Control)
RefreshItems

在需要刷新导航用户界面 (UI) 的状态以反映基础数据的当前状态时发生。

RegionChanged

Region 属性的值更改时发生。

(继承自 Control)
RendererChanged

Renderer 属性的值更改时发生。

(继承自 ToolStrip)
Resize

在调整控件大小时发生。

(继承自 Control)
RightToLeftChanged

RightToLeft 属性值更改时发生。

(继承自 Control)
Scroll

用户或代码滚动工作区时发生。

(继承自 ScrollableControl)
SizeChanged

Size 属性值更改时发生。

(继承自 Control)
StyleChanged

在控件样式更改时发生。

(继承自 Control)
SystemColorsChanged

系统颜色更改时发生。

(继承自 Control)
TabIndexChanged

TabIndex 属性值更改时发生。

(继承自 Control)
TabStopChanged

TabStop 属性值更改时发生。

(继承自 Control)
TextChanged

Text 属性值更改时发生。

(继承自 Control)
Validated

在控件完成验证时发生。

(继承自 Control)
Validating

在控件验证时发生。

(继承自 Control)
VisibleChanged

Visible 属性值更改时发生。

(继承自 Control)

显式接口实现

IDropTarget.OnDragDrop(DragEventArgs)

引发 DragDrop 事件。

(继承自 Control)
IDropTarget.OnDragEnter(DragEventArgs)

引发 DragEnter 事件。

(继承自 Control)
IDropTarget.OnDragLeave(EventArgs)

引发 DragLeave 事件。

(继承自 Control)
IDropTarget.OnDragOver(DragEventArgs)

引发 DragOver 事件。

(继承自 Control)

适用于

另请参阅