ToolStripLabel 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示不可选的 ToolStripItem,它呈现文本和图像并且可以显示超链接。
public ref class ToolStripLabel : System::Windows::Forms::ToolStripItem
[System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip)]
public class ToolStripLabel : System.Windows.Forms.ToolStripItem
[<System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip)>]
type ToolStripLabel = class
inherit ToolStripItem
Public Class ToolStripLabel
Inherits ToolStripItem
- 继承
- 继承
- 派生
- 属性
示例
下面的代码示例演示如何通过设置 IsLink、、ActiveLinkColorLinkColor、 VisitedLinkColorLinkVisited 和 LinkBehavior 属性来初始化 ToolStripLabel 以包含链接。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
public class Form1 : Form
{
private ToolStripLabel toolStripLabel1;
private ToolStrip toolStrip1;
public Form1()
{
InitializeComponent();
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
private void InitializeComponent()
{
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(292, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripLabel1
//
this.toolStripLabel1.IsLink = true;
this.toolStripLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
this.toolStripLabel1.Name = "toolStripLabel1";
this.toolStripLabel1.Size = new System.Drawing.Size(71, 22);
this.toolStripLabel1.Tag = "http://search.microsoft.com/search/search.aspx?";
this.toolStripLabel1.Text = "Search MSDN";
this.toolStripLabel1.Click += new System.EventHandler(this.toolStripLabel1_Click);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.toolStrip1);
this.Name = "Form1";
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private void toolStripLabel1_Click(object sender, EventArgs e)
{
ToolStripLabel toolStripLabel1 = (ToolStripLabel)sender;
// Start Internet Explorer and navigate to the URL in the
// tag property.
System.Diagnostics.Process.Start("IEXPLORE.EXE", toolStripLabel1.Tag.ToString());
// Set the LinkVisited property to true to change the color.
toolStripLabel1.LinkVisited = true;
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private WithEvents toolStripLabel1 As ToolStripLabel
Private toolStrip1 As ToolStrip
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
Me.toolStrip1 = New System.Windows.Forms.ToolStrip()
Me.toolStripLabel1 = New System.Windows.Forms.ToolStripLabel()
Me.toolStrip1.SuspendLayout()
Me.SuspendLayout()
'
' toolStrip1
'
Me.toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.toolStripLabel1})
Me.toolStrip1.Location = New System.Drawing.Point(0, 0)
Me.toolStrip1.Name = "toolStrip1"
Me.toolStrip1.Size = New System.Drawing.Size(292, 25)
Me.toolStrip1.TabIndex = 0
Me.toolStrip1.Text = "toolStrip1"
'
' toolStripLabel1
'
Me.toolStripLabel1.IsLink = True
Me.toolStripLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline
Me.toolStripLabel1.Name = "toolStripLabel1"
Me.toolStripLabel1.Size = New System.Drawing.Size(71, 22)
Me.toolStripLabel1.Tag = "http://search.microsoft.com/search/search.aspx?"
Me.toolStripLabel1.Text = "Search MSDN"
'
' Form1
'
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(toolStrip1)
Me.Name = "Form1"
Me.toolStrip1.ResumeLayout(False)
Me.toolStrip1.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private Sub toolStripLabel1_Click(sender As Object, e As EventArgs) Handles toolStripLabel1.Click
Dim toolStripLabel1 As ToolStripLabel = CType(sender, ToolStripLabel)
' Start Internet Explorer and navigate to the URL in the
' tag property.
System.Diagnostics.Process.Start("IEXPLORE.EXE", toolStripLabel1.Tag.ToString())
' Set the LinkVisited property to true to change the color.
toolStripLabel1.LinkVisited = True
End Sub
End Class
注解
ToolStripLabel使用 类创建一个标签,该标签可以呈现文本和图像,这些文本和图像可以实现 ToolStripItem.TextAlign 和 ToolStripItem.ImageAlign 属性。 ToolStripLabel还具有许多属性,使它能够显示一个或多个超链接,以及修改超链接的外观和行为的其他属性。
ToolStripLabel 类似于 ToolStripButton,在默认情况下不会获得焦点,并且不会呈现为按下或突出显示。
作为所承载项的 ToolStripLabel 可支持访问键。
可对 ToolStripLabel 使用 LinkColor、LinkVisited 和 LinkBehavior 属性,以在 ToolStrip 中支持链接控件。
构造函数
ToolStripLabel() |
初始化 ToolStripLabel 类的新实例。 |
ToolStripLabel(Image) |
初始化 ToolStripLabel 类的新实例,并指定要显示的图像。 |
ToolStripLabel(String) |
初始化 ToolStripLabel 类的新实例,并指定要显示的文本。 |
ToolStripLabel(String, Image) |
初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像。 |
ToolStripLabel(String, Image, Boolean) |
初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像以及 ToolStripLabel 是否作为链接。 |
ToolStripLabel(String, Image, Boolean, EventHandler) |
初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序。 |
ToolStripLabel(String, Image, Boolean, EventHandler, String) |
初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序和 ToolStripLabel 的名称。 |
属性
方法
事件
显式接口实现
IDropTarget.OnDragDrop(DragEventArgs) |
引发 DragDrop 事件。 (继承自 ToolStripItem) |
IDropTarget.OnDragEnter(DragEventArgs) |
引发 DragEnter 事件。 (继承自 ToolStripItem) |
IDropTarget.OnDragLeave(EventArgs) |
引发 DragLeave 事件。 (继承自 ToolStripItem) |
IDropTarget.OnDragOver(DragEventArgs) |
引发 |