ToolStripButton 类
定义
表示包含文本和图像的可选的 ToolStripItem。Represents a selectable ToolStripItem that can contain text and images.
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 。The following code example shows two ToolStripButton controls with both image and text on a ToolStrip. 单击 "新建" 将 ToolStripButton 显示一个消息框。Clicking the NewToolStripButton displays a message box.
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 创建支持文本和图像的工具栏按钮。Use ToolStripButton to create a toolbar button that supports both text and images. 使用 ToolStripItem.ImageAlign 和 ToolStripItem.TextAlign 属性可获取或设置 ToolStripButton 图像和文本的位置。Use the ToolStripItem.ImageAlign and ToolStripItem.TextAlign properties to get or set the positioning of ToolStripButton images and text.
您可以 ToolStripButton 使用各种边框样式显示,并可以使用它来表示和激活操作状态。You can display a ToolStripButton with various border styles, and you can use it to represent and activate operational states. 你还可以将其定义为默认情况下具有焦点。You can also define it to have the focus by default.
尽管 ToolStripButton 替换并扩展了 ToolBarButton 以前版本的控制,但仍 ToolBarButton 保留以实现向后兼容性和将来使用。Although ToolStripButton replaces and extends the ToolBarButton control of previous versions, ToolBarButton is retained for both backward compatibility and future use.
构造函数
ToolStripButton() |
初始化 ToolStripButton 类的新实例。Initializes a new instance of the ToolStripButton class. |
ToolStripButton(Image) |
初始化 ToolStripButton 类的新实例,使之显示指定的图像。Initializes a new instance of the ToolStripButton class that displays the specified image. |
ToolStripButton(String) |
初始化 ToolStripButton 类的新实例,使之显示指定的文本。Initializes a new instance of the ToolStripButton class that displays the specified text. |
ToolStripButton(String, Image) |
初始化 ToolStripButton 类的新实例,使之显示指定的文本和图像。Initializes a new instance of the ToolStripButton class that displays the specified text and image. |
ToolStripButton(String, Image, EventHandler) |
初始化 ToolStripButton 类的新实例,使之显示指定的文本和图像并引发 Click 事件。Initializes a new instance of the ToolStripButton class that displays the specified text and image and that raises the Click event. |
ToolStripButton(String, Image, EventHandler, String) |
使用指定的名称初始化 ToolStripButton 类的新实例,使之显示指定的文本和图像并引发 Click 事件。Initializes a new instance of the ToolStripButton class with the specified name that displays the specified text and image and that raises the Click event. |
属性
AccessibilityObject |
获取分配给该控件的 AccessibleObject。Gets the AccessibleObject assigned to the control. (继承自 ToolStripItem) |
AccessibleDefaultActionDescription |
获取或设置控件的默认操作说明以供具有辅助功能的客户端应用程序使用。Gets or sets the default action description of the control for use by accessibility client applications. (继承自 ToolStripItem) |
AccessibleDescription |
获取或设置将报告给具有辅助功能的客户端应用程序的说明。Gets or sets the description that will be reported to accessibility client applications. (继承自 ToolStripItem) |
AccessibleName |
获取或设置供具有辅助功能的客户端应用程序使用的控件的名称。Gets or sets the name of the control for use by accessibility client applications. (继承自 ToolStripItem) |
AccessibleRole |
获取或设置控件的辅助性角色,该角色指定控件的用户界面元素的类型。Gets or sets the accessible role of the control, which specifies the type of user interface element of the control. (继承自 ToolStripItem) |
Alignment |
获取或设置一个值,该值指示该项是否与 ToolStrip 的起始或结尾处对齐。Gets or sets a value indicating whether the item aligns towards the beginning or end of the ToolStrip. (继承自 ToolStripItem) |
AllowDrop |
获取或设置一个值,该值指示是否通过你实现的事件来处理拖放和项重新排序。Gets or sets a value indicating whether drag-and-drop and item reordering are handled through events that you implement. (继承自 ToolStripItem) |
Anchor |
获取或设置 ToolStripItem 要绑定到的容器的边缘,并确定 ToolStripItem 如何随其父级调整大小。Gets or sets the edges of the container to which a ToolStripItem is bound and determines how a ToolStripItem is resized with its parent. (继承自 ToolStripItem) |
AutoSize |
获取或设置一个值,该值指示是否自动调整项的大小。Gets or sets a value indicating whether the item is automatically sized. (继承自 ToolStripItem) |
AutoToolTip |
获取或设置一个值,该值指示 ToolTip 上显示的 ToolStripButton 是默认文本还是自定义文本。Gets or sets a value indicating whether default or custom ToolTip text is displayed on the ToolStripButton. |
Available |
获取或设置一个值,该值指示是否应该将 ToolStripItem 放置在 ToolStrip 上。Gets or sets a value indicating whether the ToolStripItem should be placed on a ToolStrip. (继承自 ToolStripItem) |
BackColor |
获取或设置项的背景色。Gets or sets the background color for the item. (继承自 ToolStripItem) |
BackgroundImage |
获取或设置在项中显示的背景图像。Gets or sets the background image displayed in the item. (继承自 ToolStripItem) |
BackgroundImageLayout |
获取或设置用于 ToolStripItem 的背景图像布局。Gets or sets the background image layout used for the ToolStripItem. (继承自 ToolStripItem) |
Bounds |
获取项的大小和位置。Gets the size and location of the item. (继承自 ToolStripItem) |
CanRaiseEvents |
获取一个指示组件是否可以引发事件的值。Gets a value indicating whether the component can raise an event. (继承自 Component) |
CanSelect |
获取一个值,该值指示 ToolStripButton 是否可选。Gets a value indicating whether the ToolStripButton can be selected. |
Checked |
获取或设置一个值,该值指示是否已按下 ToolStripButton。Gets or sets a value indicating whether the ToolStripButton is pressed or not pressed. |
CheckOnClick |
获取或设置一个值,该值指示在单击 ToolStripButton 时该按钮是否应自动显示为按下或未按下状态。Gets or sets a value indicating whether the ToolStripButton should automatically appear pressed in and not pressed in when clicked. |
CheckState |
获取或设置一个值,该值指示 ToolStripButton 是处于按下状态、未按下状态(默认值)还是不确定状态。Gets or sets a value indicating whether the ToolStripButton is in the pressed or not pressed state by default, or is in an indeterminate state. |
Container |
获取包含 IContainer 的 Component。Gets the IContainer that contains the Component. (继承自 Component) |
ContentRectangle |
获取在不覆盖背景边框的情况下,可以将内容(如文本和图标)放置在 ToolStripItem 内的哪个区域。Gets the area where content, such as text and icons, can be placed within a ToolStripItem without overwriting background borders. (继承自 ToolStripItem) |
DefaultAutoToolTip |
获取一个值,该值指示是否显示定义为默认值的工具提示。Gets a value indicating whether to display the ToolTip that is defined as the default. |
DefaultDisplayStyle |
获取一个值,该值指示在 ToolStripItem 上显示的内容。Gets a value indicating what is displayed on the ToolStripItem. (继承自 ToolStripItem) |
DefaultMargin |
获取项的默认边距。Gets the default margin of an item. (继承自 ToolStripItem) |
DefaultPadding |
获取项的内部间距特征。Gets the internal spacing characteristics of the item. (继承自 ToolStripItem) |
DefaultSize |
获取项的默认大小。Gets the default size of the item. (继承自 ToolStripItem) |
DesignMode |
获取一个值,用以指示 Component 当前是否处于设计模式。Gets a value that indicates whether the Component is currently in design mode. (继承自 Component) |
DismissWhenClicked |
获取一个值,该值指示在单击 ToolStripDropDown 上的项后是否隐藏这些项。Gets a value indicating whether items on a ToolStripDropDown are hidden after they are clicked. (继承自 ToolStripItem) |
DisplayStyle |
获取或设置是否在 ToolStripItem 上显示文本和图像。Gets or sets whether text and images are displayed on a ToolStripItem. (继承自 ToolStripItem) |
Dock |
获取或设置要停靠在其父控件上的 ToolStripItem 边框,并确定 ToolStripItem 如何随其父控件一起调整大小。Gets or sets which ToolStripItem borders are docked to its parent control and determines how a ToolStripItem is resized with its parent. (继承自 ToolStripItem) |
DoubleClickEnabled |
获取或设置一个值,该值指示通过双击鼠标能否激活 ToolStripItem。Gets or sets a value indicating whether the ToolStripItem can be activated by double-clicking the mouse. (继承自 ToolStripItem) |
Enabled |
获取或设置一个值,该值指示是否启用了 ToolStripItem 的父控件。Gets or sets a value indicating whether the parent control of the ToolStripItem is enabled. (继承自 ToolStripItem) |
Events |
获取附加到此 Component 的事件处理程序的列表。Gets the list of event handlers that are attached to this Component. (继承自 Component) |
Font |
获取或设置由该项显示的文本的字体。Gets or sets the font of the text displayed by the item. (继承自 ToolStripItem) |
ForeColor |
获取或设置项的前景色。Gets or sets the foreground color of the item. (继承自 ToolStripItem) |
Height |
获取或设置 ToolStripItem 的高度(以像素为单位)。Gets or sets the height, in pixels, of a ToolStripItem. (继承自 ToolStripItem) |
Image |
获取或设置显示在 ToolStripItem 上的图像。Gets or sets the image that is displayed on a ToolStripItem. (继承自 ToolStripItem) |
ImageAlign |
获取或设置 ToolStripItem 上的图像对齐方式。Gets or sets the alignment of the image on a ToolStripItem. (继承自 ToolStripItem) |
ImageIndex |
获取或设置在该项上显示的图像的索引值。Gets or sets the index value of the image that is displayed on the item. (继承自 ToolStripItem) |
ImageKey |
获取或设置显示在 ImageList 上的 ToolStripItem 中图像的键访问器。Gets or sets the key accessor for the image in the ImageList that is displayed on a ToolStripItem. (继承自 ToolStripItem) |
ImageScaling |
获取或设置一个值,该值指示是否根据容器自动调整 ToolStripItem 上图像的大小。Gets or sets a value indicating whether an image on a ToolStripItem is automatically resized to fit in a container. (继承自 ToolStripItem) |
ImageTransparentColor |
获取或设置 ToolStripItem 图像中被视为透明的颜色。Gets or sets the color to treat as transparent in a ToolStripItem image. (继承自 ToolStripItem) |
IsDisposed |
获取一个值,该值指示对象是否已被释放。Gets a value indicating whether the object has been disposed of. (继承自 ToolStripItem) |
IsOnDropDown |
获取一个值,该值指示当前 Control 的容器是否是 ToolStripDropDown。Gets a value indicating whether the container of the current Control is a ToolStripDropDown. (继承自 ToolStripItem) |
IsOnOverflow |
获取一个值,该值指示 Placement 属性是否设置为 Overflow。Gets a value indicating whether the Placement property is set to Overflow. (继承自 ToolStripItem) |
Margin |
获取或设置项与相邻项之间的间距。Gets or sets the space between the item and adjacent items. (继承自 ToolStripItem) |
MergeAction |
获取或设置如何将子菜单与父菜单合并。Gets or sets how child menus are merged with parent menus. (继承自 ToolStripItem) |
MergeIndex |
获取或设置合并的项在当前 ToolStrip 内的位置。Gets or sets the position of a merged item within the current ToolStrip. (继承自 ToolStripItem) |
Name |
获取或设置项的名称。Gets or sets the name of the item. (继承自 ToolStripItem) |
Overflow |
获取或设置该项应附加到 ToolStrip 或 ToolStripOverflowButton,还是漂浮在两者之间。Gets or sets whether the item is attached to the ToolStrip or ToolStripOverflowButton or can float between the two. (继承自 ToolStripItem) |
Owner |
获取或设置此项的所有者。Gets or sets the owner of this item. (继承自 ToolStripItem) |
OwnerItem |
获取此 ToolStripItem 的父级 ToolStripItem。Gets the parent ToolStripItem of this ToolStripItem. (继承自 ToolStripItem) |
Padding |
获取或设置项的内容与其边缘之间的内部间距(以像素为单位)。Gets or sets the internal spacing, in pixels, between the item's contents and its edges. (继承自 ToolStripItem) |
Parent |
获取或设置 ToolStripItem 的父容器。Gets or sets the parent container of the ToolStripItem. (继承自 ToolStripItem) |
Placement |
获取项的当前布局。Gets the current layout of the item. (继承自 ToolStripItem) |
Pressed |
获取一个值,该值指示该项是否处于按下状态。Gets a value indicating whether the state of the item is pressed. (继承自 ToolStripItem) |
RightToLeft |
获取或设置一个值,该值指示项的放置顺序和文本的写入顺序是否均为从右向左。Gets or sets a value indicating whether items are to be placed from right to left and text is to be written from right to left. (继承自 ToolStripItem) |
RightToLeftAutoMirrorImage |
当 ToolStripItem 属性设置为 RightToLeft 时,将自动镜像 Yes 图像。Mirrors automatically the ToolStripItem image when the RightToLeft property is set to Yes. (继承自 ToolStripItem) |
Selected |
获取一个值,该值指示该项是否处于选定状态。Gets a value indicating whether the item is selected. (继承自 ToolStripItem) |
ShowKeyboardCues |
获取一个值,该值指示是显示还是隐藏快捷键。Gets a value indicating whether to show or hide shortcut keys. (继承自 ToolStripItem) |
Site |
获取或设置 Component 的 ISite。Gets or sets the ISite of the Component. (继承自 Component) |
Size |
获取或设置项的大小。Gets or sets the size of the item. (继承自 ToolStripItem) |
Tag |
获取或设置包含与项有关的数据的对象。Gets or sets the object that contains data about the item. (继承自 ToolStripItem) |
Text |
获取或设置要显示在项上的文本。Gets or sets the text that is to be displayed on the item. (继承自 ToolStripItem) |
TextAlign |
获取或设置 ToolStripLabel 上的文本的对齐方式。Gets or sets the alignment of the text on a ToolStripLabel. (继承自 ToolStripItem) |
TextDirection |
获取 ToolStripItem 上所用文本的方向。Gets the orientation of text used on a ToolStripItem. (继承自 ToolStripItem) |
TextImageRelation |
获取或设置 ToolStripItem 文本和图像相对于彼此的位置。Gets or sets the position of ToolStripItem text and image relative to each other. (继承自 ToolStripItem) |
ToolTipText |
获取或设置作为控件的 ToolTip 显示的文本。Gets or sets the text that appears as a ToolTip for a control. (继承自 ToolStripItem) |
Visible |
获取或设置一个值,该值指示是否显示该项。Gets or sets a value indicating whether the item is displayed. (继承自 ToolStripItem) |
Width |
获取或设置 ToolStripItem 的宽度(以像素为单位)。Gets or sets the width in pixels of a ToolStripItem. (继承自 ToolStripItem) |
方法
CreateAccessibilityInstance() |
为 ToolStripButton 创建一个新的辅助功能对象。Creates a new accessibility object for the ToolStripButton. |
CreateObjRef(Type) |
创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (继承自 MarshalByRefObject) |
Dispose() |
释放由 Component 使用的所有资源。Releases all resources used by the Component. (继承自 Component) |
Dispose(Boolean) |
释放由 ToolStripItem 占用的非托管资源,还可以另外再释放托管资源。Releases the unmanaged resources used by the ToolStripItem and optionally releases the managed resources. (继承自 ToolStripItem) |
DoDragDrop(Object, DragDropEffects) |
开始拖放操作。Begins a drag-and-drop operation. (继承自 ToolStripItem) |
Equals(Object) |
确定指定对象是否等于当前对象。Determines whether the specified object is equal to the current object. (继承自 Object) |
GetCurrentParent() |
检索作为当前 ToolStrip 的容器的 ToolStripItem。Retrieves the ToolStrip that is the container of the current ToolStripItem. (继承自 ToolStripItem) |
GetHashCode() |
作为默认哈希函数。Serves as the default hash function. (继承自 Object) |
GetLifetimeService() |
已过时。
检索控制此实例的生存期策略的当前生存期服务对象。Retrieves the current lifetime service object that controls the lifetime policy for this instance. (继承自 MarshalByRefObject) |
GetPreferredSize(Size) |
检索适合 ToolStripButton 的矩形区域的大小。Retrieves the size of a rectangular area into which a ToolStripButton can be fitted. |
GetService(Type) |
返回一个对象,该对象表示由 Component 或它的 Container 提供的服务。Returns an object that represents a service provided by the Component or by its Container. (继承自 Component) |
GetType() |
获取当前实例的 Type。Gets the Type of the current instance. (继承自 Object) |
InitializeLifetimeService() |
已过时。
获取生存期服务对象来控制此实例的生存期策略。Obtains a lifetime service object to control the lifetime policy for this instance. (继承自 MarshalByRefObject) |
Invalidate() |
使 ToolStripItem 的整个图面无效并导致重绘该图面。Invalidates the entire surface of the ToolStripItem and causes it to be redrawn. (继承自 ToolStripItem) |
Invalidate(Rectangle) |
通过将 ToolStripItem 的指定区域添加到 ToolStripItem 的更新区域(即下次执行绘制操作时将重新绘制的区域)使该指定区域无效,并导致向 ToolStripItem 发送绘制消息。Invalidates the specified region of the ToolStripItem by adding it to the update region of the ToolStripItem, which is the area that will be repainted at the next paint operation, and causes a paint message to be sent to the ToolStripItem. (继承自 ToolStripItem) |
IsInputChar(Char) |
确定字符是否为该项可识别的输入字符。Determines whether a character is an input character that the item recognizes. (继承自 ToolStripItem) |
IsInputKey(Keys) |
确定指定的键是常规输入键还是需要预处理的特殊键。Determines whether the specified key is a regular input key or a special key that requires preprocessing. (继承自 ToolStripItem) |
MemberwiseClone() |
创建当前 Object 的浅表副本。Creates a shallow copy of the current Object. (继承自 Object) |
MemberwiseClone(Boolean) |
创建当前 MarshalByRefObject 对象的浅表副本。Creates a shallow copy of the current MarshalByRefObject object. (继承自 MarshalByRefObject) |
OnAvailableChanged(EventArgs) |
引发 AvailableChanged 事件。Raises the AvailableChanged event. (继承自 ToolStripItem) |
OnBackColorChanged(EventArgs) |
引发 BackColorChanged 事件。Raises the BackColorChanged event. (继承自 ToolStripItem) |
OnBoundsChanged() |
当 Bounds 属性更改时发生。Occurs when the Bounds property changes. (继承自 ToolStripItem) |
OnCheckedChanged(EventArgs) |
引发 CheckedChanged 事件。Raises the CheckedChanged event. |
OnCheckStateChanged(EventArgs) |
引发 CheckStateChanged 事件。Raises the CheckStateChanged event. |
OnClick(EventArgs) | |
OnDisplayStyleChanged(EventArgs) |
引发 DisplayStyleChanged 事件。Raises the DisplayStyleChanged event. (继承自 ToolStripItem) |
OnDoubleClick(EventArgs) |
引发 DoubleClick 事件。Raises the DoubleClick event. (继承自 ToolStripItem) |
OnDragDrop(DragEventArgs) |
引发 DragDrop 事件。Raises the DragDrop event. (继承自 ToolStripItem) |
OnDragEnter(DragEventArgs) |
引发 DragEnter 事件。Raises the DragEnter event. (继承自 ToolStripItem) |
OnDragLeave(EventArgs) |
引发 DragLeave 事件。Raises the DragLeave event. (继承自 ToolStripItem) |
OnDragOver(DragEventArgs) |
引发 DragOver 事件。Raises the DragOver event. (继承自 ToolStripItem) |
OnEnabledChanged(EventArgs) |
引发 EnabledChanged 事件。Raises the EnabledChanged event. (继承自 ToolStripItem) |
OnFontChanged(EventArgs) |
引发 FontChanged 事件。Raises the FontChanged event. (继承自 ToolStripItem) |
OnForeColorChanged(EventArgs) |
引发 ForeColorChanged 事件。Raises the ForeColorChanged event. (继承自 ToolStripItem) |
OnGiveFeedback(GiveFeedbackEventArgs) |
引发 GiveFeedback 事件。Raises the GiveFeedback event. (继承自 ToolStripItem) |
OnLayout(LayoutEventArgs) |
引发 Layout 事件。Raises the Layout event. (继承自 ToolStripItem) |
OnLocationChanged(EventArgs) |
引发 LocationChanged 事件。Raises the LocationChanged event. (继承自 ToolStripItem) |
OnMouseDown(MouseEventArgs) |
引发 MouseDown 事件。Raises the MouseDown event. (继承自 ToolStripItem) |
OnMouseEnter(EventArgs) |
引发 MouseEnter 事件。Raises the MouseEnter event. (继承自 ToolStripItem) |
OnMouseHover(EventArgs) |
引发 MouseHover 事件。Raises the MouseHover event. (继承自 ToolStripItem) |
OnMouseLeave(EventArgs) |
引发 MouseLeave 事件。Raises the MouseLeave event. (继承自 ToolStripItem) |
OnMouseMove(MouseEventArgs) |
引发 MouseMove 事件。Raises the MouseMove event. (继承自 ToolStripItem) |
OnMouseUp(MouseEventArgs) |
引发 MouseUp 事件。Raises the MouseUp event. (继承自 ToolStripItem) |
OnOwnerChanged(EventArgs) |
引发 OwnerChanged 事件。Raises the OwnerChanged event. (继承自 ToolStripItem) |
OnOwnerFontChanged(EventArgs) |
在 FontChanged 的父级上更改 Font 属性后,会引发 ToolStripItem 事件。Raises the FontChanged event when the Font property has changed on the parent of the ToolStripItem. (继承自 ToolStripItem) |
OnPaint(PaintEventArgs) | |
OnParentBackColorChanged(EventArgs) |
引发 BackColorChanged 事件。Raises the BackColorChanged event. (继承自 ToolStripItem) |
OnParentChanged(ToolStrip, ToolStrip) |
引发 ParentChanged 事件。Raises the ParentChanged event. (继承自 ToolStripItem) |
OnParentEnabledChanged(EventArgs) |
当项的容器的 EnabledChanged 属性值更改时,会引发 Enabled 事件。Raises the EnabledChanged event when the Enabled property value of the item's container changes. (继承自 ToolStripItem) |
OnParentForeColorChanged(EventArgs) |
引发 ForeColorChanged 事件。Raises the ForeColorChanged event. (继承自 ToolStripItem) |
OnParentRightToLeftChanged(EventArgs) |
引发 RightToLeftChanged 事件。Raises the RightToLeftChanged event. (继承自 ToolStripItem) |
OnQueryContinueDrag(QueryContinueDragEventArgs) |
引发 QueryContinueDrag 事件。Raises the QueryContinueDrag event. (继承自 ToolStripItem) |
OnRightToLeftChanged(EventArgs) |
引发 RightToLeftChanged 事件。Raises the RightToLeftChanged event. (继承自 ToolStripItem) |
OnTextChanged(EventArgs) |
引发 TextChanged 事件。Raises the TextChanged event. (继承自 ToolStripItem) |
OnVisibleChanged(EventArgs) |
引发 VisibleChanged 事件。Raises the VisibleChanged event. (继承自 ToolStripItem) |
PerformClick() |
为 |
ProcessCmdKey(Message, Keys) |
处理命令键。Processes a command key. (继承自 ToolStripItem) |
ProcessDialogKey(Keys) |
处理对话框键。Processes a dialog key. (继承自 ToolStripItem) |
ProcessMnemonic(Char) |
处理助记键字符。Processes a mnemonic character. (继承自 ToolStripItem) |
ResetBackColor() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetDisplayStyle() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetFont() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetForeColor() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetImage() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetMargin() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetPadding() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetRightToLeft() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
ResetTextDirection() |
此方法与此类无关。This method is not relevant to this class. (继承自 ToolStripItem) |
Select() |
选择项。Selects the item. (继承自 ToolStripItem) |
SetBounds(Rectangle) |
设置项的大小和位置。Sets the size and location of the item. (继承自 ToolStripItem) |
SetVisibleCore(Boolean) |
将 ToolStripItem 设置为指定的可见状态。Sets the ToolStripItem to the specified visible state. (继承自 ToolStripItem) |
ToString() |
返回包含 Component 的名称的 String(如果有)。Returns a String containing the name of the Component, if any. 不应重写此方法。This method should not be overridden. (继承自 ToolStripItem) |
事件
AvailableChanged |
当 Available 属性的值更改时发生。Occurs when the value of the Available property changes. (继承自 ToolStripItem) |
BackColorChanged |
当 BackColor 属性的值更改时发生。Occurs when the value of the BackColor property changes. (继承自 ToolStripItem) |
CheckedChanged |
当 Checked 属性的值更改时发生。Occurs when the value of the Checked property changes. |
CheckStateChanged |
当 CheckState 属性的值更改时发生。Occurs when the value of the CheckState property changes. |
Click |
在单击 ToolStripItem 时发生。Occurs when the ToolStripItem is clicked. (继承自 ToolStripItem) |
DisplayStyleChanged |
在 DisplayStyle 更改后发生。Occurs when the DisplayStyle has changed. (继承自 ToolStripItem) |
Disposed |
在通过调用 Dispose() 方法释放组件时发生。Occurs when the component is disposed by a call to the Dispose() method. (继承自 Component) |
DoubleClick |
当用鼠标双击项时发生。Occurs when the item is double-clicked with the mouse. (继承自 ToolStripItem) |
DragDrop |
当用户拖动某项后再释放鼠标按钮时发生,指示此项应该被放入该项内。Occurs when the user drags an item and the user releases the mouse button, indicating that the item should be dropped into this item. (继承自 ToolStripItem) |
DragEnter |
当用户将某项拖动到该项的工作区内时发生。Occurs when the user drags an item into the client area of this item. (继承自 ToolStripItem) |
DragLeave |
当用户拖动某项并且鼠标指针不再悬停在此项的工作区上方时发生。Occurs when the user drags an item and the mouse pointer is no longer over the client area of this item. (继承自 ToolStripItem) |
DragOver |
当用户将某项拖动到此项的工作区上方时发生。Occurs when the user drags an item over the client area of this item. (继承自 ToolStripItem) |
EnabledChanged |
在 Enabled 属性值更改后发生。Occurs when the Enabled property value has changed. (继承自 ToolStripItem) |
ForeColorChanged |
在 ForeColor 属性值更改时发生。Occurs when the ForeColor property value changes. (继承自 ToolStripItem) |
GiveFeedback |
在执行拖动操作期间发生。Occurs during a drag operation. (继承自 ToolStripItem) |
LocationChanged |
当更新 ToolStripItem 的位置时发生。Occurs when the location of a ToolStripItem is updated. (继承自 ToolStripItem) |
MouseDown |
当鼠标指针放置在该项上时,在按鼠标按钮时发生。Occurs when the mouse pointer is over the item and a mouse button is pressed. (继承自 ToolStripItem) |
MouseEnter |
在鼠标指针进入项时发生。Occurs when the mouse pointer enters the item. (继承自 ToolStripItem) |
MouseHover |
当鼠标指针悬停在项上时发生。Occurs when the mouse pointer hovers over the item. (继承自 ToolStripItem) |
MouseLeave |
当鼠标指针离开项时发生。Occurs when the mouse pointer leaves the item. (继承自 ToolStripItem) |
MouseMove |
当鼠标指针移到该项上时发生。Occurs when the mouse pointer is moved over the item. (继承自 ToolStripItem) |
MouseUp |
当鼠标指针位于该项上时,在松开鼠标按钮时发生。Occurs when the mouse pointer is over the item and a mouse button is released. (继承自 ToolStripItem) |
OwnerChanged |
当 Owner 属性更改时发生。Occurs when the Owner property changes. (继承自 ToolStripItem) |
Paint |
在重绘项时发生。Occurs when the item is redrawn. (继承自 ToolStripItem) |
QueryAccessibilityHelp |
当具有辅助功能的客户端应用程序调用 ToolStripItem 的帮助时发生。Occurs when an accessibility client application invokes help for the ToolStripItem. (继承自 ToolStripItem) |
QueryContinueDrag |
在拖放操作期间发生,并且允许拖动源确定是否应取消拖放操作。Occurs during a drag-and-drop operation and allows the drag source to determine whether the drag-and-drop operation should be canceled. (继承自 ToolStripItem) |
RightToLeftChanged |
在 RightToLeft 属性值更改时发生。Occurs when the RightToLeft property value changes. (继承自 ToolStripItem) |
TextChanged |
当 Text 属性的值更改时发生。Occurs when the value of the Text property changes. (继承自 ToolStripItem) |
VisibleChanged |
当 Visible 属性的值更改时发生。Occurs when the value of the Visible property changes. (继承自 ToolStripItem) |
显式接口实现
IDropTarget.OnDragDrop(DragEventArgs) |
引发 DragDrop 事件。Raises the DragDrop event. (继承自 ToolStripItem) |
IDropTarget.OnDragEnter(DragEventArgs) |
引发 DragEnter 事件。Raises the DragEnter event. (继承自 ToolStripItem) |
IDropTarget.OnDragLeave(EventArgs) |
引发 DragLeave 事件。Raises the DragLeave event. (继承自 ToolStripItem) |
IDropTarget.OnDragOver(DragEventArgs) |
引发 |