通过


LinkLabel 类

定义

表示可以显示超链接的 Windows 标签控件。

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

示例

以下示例演示如何使用 LinkLabel 类。 该示例通过打开网站来处理 LinkClicked 事件。

using System;
using System.Drawing;
using System.Windows.Forms;

public class Form1 : System.Windows.Forms.Form
{
    private System.Windows.Forms.LinkLabel linkLabel1;

    [STAThread]
    static void Main()
    {
        Application.Run(new Form1());
    }

    public Form1()
    {
        // Create the LinkLabel.
        this.linkLabel1 = new System.Windows.Forms.LinkLabel();

        // Configure the LinkLabel's location. 
        this.linkLabel1.Location = new System.Drawing.Point(34, 56);
        // Specify that the size should be automatically determined by the content.
        this.linkLabel1.AutoSize = true;

        // Add an event handler to do something when the links are clicked.
        this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);

        // Set the text for the LinkLabel.
        this.linkLabel1.Text = "Visit Microsoft";

        // Set up how the form should be displayed and add the controls to the form.
        this.ClientSize = new System.Drawing.Size(292, 266);
        this.Controls.AddRange(new System.Windows.Forms.Control[] { this.linkLabel1 });
        this.Text = "Simple Link Label Example";
    }

    private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
    {
        // Specify that the link was visited.
        this.linkLabel1.LinkVisited = true;

        // Navigate to a URL.
        System.Diagnostics.Process.Start("http://www.microsoft.com");
    }
}
Imports System.Drawing
Imports System.Windows.Forms

Public NotInheritable Class Form1
    Inherits System.Windows.Forms.Form

    Friend WithEvents LinkLabel1 As System.Windows.Forms.LinkLabel

    <System.STAThread()> _
    Public Shared Sub Main()
        System.Windows.Forms.Application.Run(New Form1)
    End Sub

    Public Sub New()
        MyBase.New()

        ' Create the LinkLabel.
        Me.LinkLabel1 = New System.Windows.Forms.LinkLabel

        ' Configure the LinkLabel's location.
        Me.LinkLabel1.Location = New System.Drawing.Point(34, 56)
        ' Specify that the size should be automatically determined by the content.
        Me.LinkLabel1.AutoSize = True

        ' Set the text for the LinkLabel.
        Me.LinkLabel1.Text = "Visit Microsoft"

        ' Set up how the form should be displayed and adds the controls to the form.
        Me.ClientSize = New System.Drawing.Size(292, 266)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.LinkLabel1})
        Me.Text = "Simple Link Label Example"
    End Sub

    Private Sub linkLabel1_LinkClicked(ByVal sender As Object, _
        ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked

        ' Specify that the link was visited.
        Me.LinkLabel1.LinkVisited = True

        ' Navigate to a URL.
        System.Diagnostics.Process.Start("http://www.microsoft.com")
    End Sub
End Class

以下示例演示如何使用定义了多个LinkArea部分的LinkLabel类在窗体上显示标签。 该示例演示如何设置AutoSize自定义外观LinkLabel的 、LinkBehaviorDisabledLinkColorLinkColorVisitedLinkColor属性。 第一个 LinkArea 是使用 LinkLabel.LinkArea 属性指定的。 使用该方法将添加LinkLabelLinkLabel.LinkCollection.Add其他链接。 该示例通过启动超链接的 Web 浏览器并显示MessageBox其他链接来处理LinkClicked该事件。

#using <System.dll>
#using <System.Windows.Forms.dll>
#using <System.Drawing.dll>

using namespace System;
using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public System::Windows::Forms::Form
{
private:
   System::Windows::Forms::LinkLabel^ linkLabel1;

public:
   Form1()
   {
      
      // Create the LinkLabel.
      this->linkLabel1 = gcnew System::Windows::Forms::LinkLabel;
      
      // Configure the LinkLabel's size and location. Specify that the
      // size should be automatically determined by the content.
      this->linkLabel1->Location = System::Drawing::Point( 34, 56 );
      this->linkLabel1->Size = System::Drawing::Size( 224, 16 );
      this->linkLabel1->AutoSize = true;
      
      // Configure the appearance.
      this->linkLabel1->DisabledLinkColor = System::Drawing::Color::Red;
      this->linkLabel1->VisitedLinkColor = System::Drawing::Color::Blue;
      this->linkLabel1->LinkBehavior = System::Windows::Forms::LinkBehavior::HoverUnderline;
      this->linkLabel1->LinkColor = System::Drawing::Color::Navy;
      this->linkLabel1->TabIndex = 0;
      this->linkLabel1->TabStop = true;
      
      // Add an event handler to do something when the links are clicked.
      this->linkLabel1->LinkClicked += gcnew System::Windows::Forms::LinkLabelLinkClickedEventHandler( this, &Form1::linkLabel1_LinkClicked );
      
      // Identify what the first Link is.
      this->linkLabel1->LinkArea = System::Windows::Forms::LinkArea( 0, 8 );
      
      // Identify that the first link is visited already.
      this->linkLabel1->Links[ 0 ]->Visited = true;
      
      // Set the Text property to a String*.
      this->linkLabel1->Text = "Register Online.  Visit Microsoft.  Visit MSN.";
      
      // Create new links using the Add method of the LinkCollection class.
      // Underline the appropriate words in the LinkLabel's Text property.
      // The words 'Register', 'Microsoft', and 'MSN' will
      // all be underlined and behave as hyperlinks.
      // First check that the Text property is long enough to accommodate
      // the desired hyperlinked areas.  If it's not, don't add hyperlinks.
      if ( this->linkLabel1->Text->Length >= 45 )
      {
         this->linkLabel1->Links[ 0 ]->LinkData = "Register";
         this->linkLabel1->Links->Add( 24, 9, "www.microsoft.com" );
         this->linkLabel1->Links->Add( 42, 3, "www.msn.com" );
         this->linkLabel1->Links[ 1 ]->Enabled = false;
      }

      
      // Set up how the form should be displayed and add the controls to the form.
      this->ClientSize = System::Drawing::Size( 292, 266 );
      array<System::Windows::Forms::Control^>^temp0 = {this->linkLabel1};
      this->Controls->AddRange( temp0 );
      this->Text = "Link Label Example";
   }


private:
   void linkLabel1_LinkClicked( Object^ /*sender*/, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e )
   {
      // Determine which link was clicked within the LinkLabel.
      this->linkLabel1->Links[ linkLabel1->Links->IndexOf( e->Link ) ]->Visited = true;
      
      // Display the appropriate link based on the value of the
      // LinkData property of the Link Object*.
      String^ target = dynamic_cast<String^>(e->Link->LinkData);
      
      // If the value looks like a URL, navigate to it.
      // Otherwise, display it in a message box.
      if ( nullptr != target && target->StartsWith( "www" ) )
      {
         System::Diagnostics::Process::Start( target );
      }
      else
      {
         MessageBox::Show( "Item clicked: {0}", target );
      }
   }
};

[STAThread]
int main()
{
   Application::Run( gcnew Form1 );
}
using System;
using System.Drawing;
using System.Windows.Forms;

public class Form1 : System.Windows.Forms.Form
{
    private System.Windows.Forms.LinkLabel linkLabel1;
    
    [STAThread]
    static void Main() 
    {
        Application.Run(new Form1());
    }

    public Form1()
    {
        // Create the LinkLabel.
        this.linkLabel1 = new System.Windows.Forms.LinkLabel();

        // Configure the LinkLabel's size and location. Specify that the
        // size should be automatically determined by the content.
        this.linkLabel1.Location = new System.Drawing.Point(34, 56);
        this.linkLabel1.Size = new System.Drawing.Size(224, 16);
        this.linkLabel1.AutoSize = true;

        // Configure the appearance. 
        // Set the DisabledLinkColor so that a disabled link will show up against the form's background.
        this.linkLabel1.DisabledLinkColor = System.Drawing.Color.Red;
        this.linkLabel1.VisitedLinkColor = System.Drawing.Color.Blue;
        this.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
        this.linkLabel1.LinkColor = System.Drawing.Color.Navy;
        
        this.linkLabel1.TabIndex = 0;
        this.linkLabel1.TabStop = true;

        // Add an event handler to do something when the links are clicked.
        this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);

        // Identify what the first Link is.
        this.linkLabel1.LinkArea = new System.Windows.Forms.LinkArea(0, 8);

        // Identify that the first link is visited already.
        this.linkLabel1.Links[0].Visited = true;
        
        // Set the Text property to a string.
        this.linkLabel1.Text = "Register Online.  Visit Microsoft.  Visit MSN.";

        // Create new links using the Add method of the LinkCollection class.
        // Underline the appropriate words in the LinkLabel's Text property.
        // The words 'Register', 'Microsoft', and 'MSN' will 
        // all be underlined and behave as hyperlinks.

        // First check that the Text property is long enough to accommodate
        // the desired hyperlinked areas.  If it's not, don't add hyperlinks.
        if(this.linkLabel1.Text.Length >= 45)
        {
            this.linkLabel1.Links[0].LinkData = "Register";
            this.linkLabel1.Links.Add(24, 9, "www.microsoft.com");
            this.linkLabel1.Links.Add(42, 3, "www.msn.com");
        //  The second link is disabled and will appear as red.
            this.linkLabel1.Links[1].Enabled = false;
        }
        
        // Set up how the form should be displayed and add the controls to the form.
        this.ClientSize = new System.Drawing.Size(292, 266);
        this.Controls.AddRange(new System.Windows.Forms.Control[] {this.linkLabel1});
        this.Text = "Link Label Example";
    }

    private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
    {
        // Determine which link was clicked within the LinkLabel.
        this.linkLabel1.Links[linkLabel1.Links.IndexOf(e.Link)].Visited = true;

        // Display the appropriate link based on the value of the 
        // LinkData property of the Link object.
        string target = e.Link.LinkData as string;

        // If the value looks like a URL, navigate to it.
        // Otherwise, display it in a message box.
        if(null != target && target.StartsWith("www"))
        {
            System.Diagnostics.Process.Start(target);
        }
        else
        {    
            MessageBox.Show("Item clicked: " + target);
        }
    }
}
Imports System.Drawing
Imports System.Windows.Forms

Public NotInheritable Class Form1
    Inherits System.Windows.Forms.Form

    Friend WithEvents LinkLabel1 As System.Windows.Forms.LinkLabel

    <System.STAThread()> _
    Public Shared Sub Main()
        System.Windows.Forms.Application.Run(New Form1)
    End Sub

    Public Sub New()
        MyBase.New()


        Me.LinkLabel1 = New System.Windows.Forms.LinkLabel

        ' Configure the LinkLabel's size and location. Specify that the
        ' size should be automatically determined by the content.
        Me.linkLabel1.Location = New System.Drawing.Point(34, 56) 
        Me.linkLabel1.Size = New System.Drawing.Size(224, 16) 
        Me.linkLabel1.AutoSize = True 

        ' Configure the appearance.
        ' Set the DisabledLinkColor so that a disabled link will show up against the form's background.
        Me.linkLabel1.DisabledLinkColor = System.Drawing.Color.Red 
        Me.linkLabel1.VisitedLinkColor = System.Drawing.Color.Blue 
        Me.linkLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline 
        Me.linkLabel1.LinkColor = System.Drawing.Color.Navy 
        
        Me.linkLabel1.TabIndex = 0 
        Me.linkLabel1.TabStop = True 
        
        ' Identify what the first Link is.
        Me.linkLabel1.LinkArea = New System.Windows.Forms.LinkArea(0, 8)

        ' Identify that the first link is visited already.
        Me.linkLabel1.Links(0).Visited = true
        
        ' Set the Text property to a string.
        Me.linkLabel1.Text = "Register Online.  Visit Microsoft.  Visit MSN."

        ' Create new links using the Add method of the LinkCollection class.
        ' Underline the appropriate words in the LinkLabel's Text property.
        ' The words 'Register', 'Microsoft', and 'MSN' will 
        ' all be underlined and behave as hyperlinks.

        ' First check that the Text property is long enough to accommodate
        ' the desired hyperlinked areas.  If it's not, don't add hyperlinks.
        If Me.LinkLabel1.Text.Length >= 45 Then
            Me.LinkLabel1.Links(0).LinkData = "Register"
            Me.LinkLabel1.Links.Add(24, 9, "www.microsoft.com")
            Me.LinkLabel1.Links.Add(42, 3, "www.msn.com")
            ' The second link is disabled and will appear as red.
            Me.linkLabel1.Links(1).Enabled = False
        End If

        ' Set up how the form should be displayed and adds the controls to the form.
        Me.ClientSize = New System.Drawing.Size(292, 266)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.LinkLabel1})
        Me.Text = "Link Label Example"
    End Sub

    Private Sub linkLabel1_LinkClicked(ByVal sender As Object, _
                ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked

        ' Determine which link was clicked within the LinkLabel.
        Me.LinkLabel1.Links(LinkLabel1.Links.IndexOf(e.Link)).Visited = True

        ' Displays the appropriate link based on the value of the LinkData property of the Link object.
        Dim target As String = CType(e.Link.LinkData, String)

        ' If the value looks like a URL, navigate to it.
        ' Otherwise, display it in a message box.
        If (target IsNot Nothing) AndAlso (target.StartsWith("www")) Then
            System.Diagnostics.Process.Start(target)
        Else
            MessageBox.Show(("Item clicked: " + target))
        End If

    End Sub

End Class

注解

ToolStripLabel控件替换了LabelLinkLabel控件,并添加了新的功能。 但是,如果选择,保留 LabelLinkLabel 控件以实现后向兼容性和将来使用。

LinkLabel 控件类似于 Label 控件,区别在于它可以显示一个超链接。 可以在控件的文本中指定多个超链接。 每个超链接都可以在应用程序中执行不同的任务。 例如,可以使用超链接在浏览器中显示网页或加载与应用程序关联的日志文件。

控件中显示的 LinkLabel 每个超链接都是类的 LinkLabel.Link 实例。 该 LinkLabel.Link 类定义超链接的显示信息、状态和位置。 此外,类 LinkData 的属性 LinkLabel.Link 使你可以将要显示的信息(如 URL)与超链接相关联。 当用户单击控件中的超链接时, LinkClicked 将引发该事件,并且 LinkLabel.Link 表示所单击的超链接的对象作为作为参数传递给事件处理程序的对象一部分 LinkLabelLinkClickedEventArgs 传递。 可以使用此对象获取 LinkLabel.Link 与用户单击的超链接关联的对象。 控件中包含的 LinkLabel 所有超链接都存储在控件的类实例中 LinkLabel.LinkCollection

可通过两种方法向 LinkLabel 控件添加超链接。 最快的方法是指定并将其 LinkArea 分配给 LinkArea 属性。 这使你可以在控件的文本中指定单个超链接。 若要添加多个超链接,可以通过属性访问集合来使用Add类的方法LinkLabel.LinkCollectionLinks

LinkLabel创建控件时,会将包含控件内LinkLabel所有文本的默认超链接添加到该控件中LinkLabel.LinkCollection。 可以通过使用属性指定新的链接区域 LinkArea 或使用 Add 方法 LinkLabel.LinkCollection指定链接来替代此默认链接。 还可以使用 Remove 类的方法 LinkLabel.LinkCollection 删除默认超链接。

默认情况下,只要集合中Links至少有一个大于零长度的链接,该TabStop属性true就处于默认状态。 控件 LinkLabel 具有单个 TabIndex 值。 但是,每个大于零长度的链接按从左到右的顺序获取其自己的制表位。 若要防止选项卡导航到 LinkLabel 控件,请将 TabStop 属性设置为 false。 但是,请注意,向集合添加新链接 Links 将自动将 TabStop 属性 true 设置为再次。

提供了 LinkLabel 许多属性,使你能够定义控件中超链接的显示外观。 属性ActiveLinkColorDisabledLinkColorLinkColorVisitedLinkColor和属性定义在以各种状态显示超链接时使用的颜色。 该 LinkBehavior 属性定义与超链接关联的下划线的显示。

构造函数

名称 说明
LinkLabel()

初始化类的新默认实例 LinkLabel

属性

名称 说明
AccessibilityObject

AccessibleObject获取分配给控件的控件。

(继承自 Control)
AccessibleDefaultActionDescription

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

(继承自 Control)
AccessibleDescription

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

(继承自 Control)
AccessibleName

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

(继承自 Control)
AccessibleRole

获取或设置控件的可访问角色。

(继承自 Control)
ActiveLinkColor

获取或设置用于显示活动链接的颜色。

AllowDrop

获取或设置一个值,该值指示控件是否可以接受用户拖动到其中的数据。

(继承自 Control)
Anchor

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

(继承自 Control)
AutoEllipsis

获取或设置一个值,该值指示省略号字符(...)是否出现在右边缘 Label,表示 Label 文本超出指定长度 Label

(继承自 Label)
AutoScrollOffset

获取或设置此控件滚动到的位置 ScrollControlIntoView(Control)

(继承自 Control)
AutoSize

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

(继承自 Label)
BackColor

获取或设置控件的背景色。

(继承自 Control)
BackgroundImage

获取或设置在控件背景上呈现的图像。

(继承自 Label)
BackgroundImageLayout

此属性与此类无关。

(继承自 Label)
BindingContext

获取或设置 BindingContext 控件。

(继承自 Control)
BorderStyle

获取或设置控件的边框样式。

(继承自 Label)
Bottom

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

(继承自 Control)
Bounds

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

(继承自 Control)
CanEnableIme

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

(继承自 Control)
CanFocus

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

(继承自 Control)
CanRaiseEvents

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

(继承自 Control)
CanSelect

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

(继承自 Control)
Capture

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

(继承自 Control)
CausesValidation

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

(继承自 Control)
ClientRectangle

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

(继承自 Control)
ClientSize

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

(继承自 Control)
CompanyName

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

(继承自 Control)
Container

IContainer获取包含 .Component

(继承自 Component)
ContainsFocus

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

(继承自 Control)
ContextMenu
已过时.

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

(继承自 Control)
ContextMenuStrip

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

(继承自 Control)
Controls

获取控件中包含的控件的集合。

(继承自 Control)
Created

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

(继承自 Control)
CreateParams

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

(继承自 Label)
Cursor

获取或设置鼠标指针位于控件上时显示的光标。

(继承自 Control)
DataBindings

获取控件的数据绑定。

(继承自 Control)
DataContext

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

(继承自 Control)
DefaultCursor

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

(继承自 Control)
DefaultImeMode

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

(继承自 Label)
DefaultMargin

获取默认情况下在控件之间指定的空间(以像素为单位)。

(继承自 Label)
DefaultMaximumSize

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

(继承自 Control)
DefaultMinimumSize

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

(继承自 Control)
DefaultPadding

获取控件内容的默认内部间距(以像素为单位)。

(继承自 Control)
DefaultSize

获取控件的默认大小。

(继承自 Label)
DesignMode

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

(继承自 Component)
DeviceDpi

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

(继承自 Control)
DisabledLinkColor

获取或设置显示禁用链接时使用的颜色。

DisplayRectangle

获取表示控件的显示区域的矩形。

(继承自 Control)
Disposing

获取一个值,该值指示基 Control 类是否正在处理。

(继承自 Control)
Dock

获取或设置哪些控件边框停靠到其父控件,并确定控件如何调整其父级的大小。

(继承自 Control)
DoubleBuffered

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

(继承自 Control)
Enabled

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

(继承自 Control)
Events

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

(继承自 Component)
FlatStyle

获取或设置 . 的 LinkLabel平面样式外观。

FlatStyle

获取或设置标签控件的平面样式外观。

(继承自 Label)
Focused

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

(继承自 Control)
Font

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

(继承自 Control)
FontHeight

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

(继承自 Control)
ForeColor

获取或设置控件的前景色。

(继承自 Control)
Handle

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

(继承自 Control)
HasChildren

获取一个值,该值指示控件是否包含一个或多个子控件。

(继承自 Control)
Height

获取或设置控件的高度。

(继承自 Control)
Image

获取或设置在 . Label上显示的图像。

(继承自 Label)
ImageAlign

获取或设置控件中显示的图像的对齐方式。

(继承自 Label)
ImageIndex

获取或设置在 . 上 Label显示的图像的索引值。

(继承自 Label)
ImageKey

获取或设置图像的 ImageList键访问器。

(继承自 Label)
ImageList

获取或设置 ImageList 包含要显示在控件中的图像的 Label 项。

(继承自 Label)
ImeMode

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

(继承自 Label)
ImeModeBase

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

(继承自 Control)
InvokeRequired

获取一个值,该值指示调用方在对控件进行方法调用时是否必须调用调用方法,因为调用方与创建控件的线程不同。

(继承自 Control)
IsAccessible

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

(继承自 Control)
IsAncestorSiteInDesignMode

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

(继承自 Control)
IsDisposed

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

(继承自 Control)
IsHandleCreated

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

(继承自 Control)
IsMirrored

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

(继承自 Control)
LayoutEngine

获取控件布局引擎的缓存实例。

(继承自 Control)
Left

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

(继承自 Control)
LinkArea

获取或设置要视为链接的文本中的范围。

LinkBehavior

获取或设置一个值,该值表示链接的行为。

LinkColor

获取或设置显示普通链接时使用的颜色。

Links

获取包含在 .. 中的 LinkLabel链接的集合。

LinkVisited

获取或设置一个值,该值指示是否应像访问链接一样显示链接。

LiveSetting

指示客户端应用来通知用户对实时区域的更改的礼貌级别。

(继承自 Label)
Location

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

(继承自 Control)
Margin

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

(继承自 Control)
MaximumSize

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

(继承自 Control)
MinimumSize

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

(继承自 Control)
Name

获取或设置控件的名称。

(继承自 Control)
OverrideCursor

获取或设置鼠标指针在鼠标指针在 LinkLabel边界内的鼠标指针时要使用的鼠标指针。

Padding

获取或设置其内容边缘 LinkLabel 之间的内部间距(以像素为单位)。

Parent

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

(继承自 Control)
PreferredHeight

获取控件的首选高度。

(继承自 Label)
PreferredSize

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

(继承自 Control)
PreferredWidth

获取控件的首选宽度。

(继承自 Label)
ProductName

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

(继承自 Control)
ProductVersion

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

(继承自 Control)
RecreatingHandle

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

(继承自 Control)
Region

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

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

此属性现已过时。

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

指示容器控件背景是否呈现在 Label.

(继承自 Label)
ResizeRedraw

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

(继承自 Control)
Right

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

(继承自 Control)
RightToLeft

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

(继承自 Control)
ScaleChildren

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

(继承自 Control)
ShowFocusCues

获取一个值,该值指示控件是否应显示焦点矩形。

(继承自 Control)
ShowKeyboardCues

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

(继承自 Control)
Site

获取或设置控件的站点。

(继承自 Control)
Size

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

(继承自 Control)
TabIndex

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

(继承自 Control)
TabStop

获取或设置一个值,该值指示用户是否可以按 Tab 键访问 LinkLabel

TabStop

获取或设置一个值,该值指示用户是否可以按 Tab 键访问 Label。 此类不使用此属性。

(继承自 Label)
Tag

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

(继承自 Control)
Text

获取或设置由 . LinkLabel. 显示的文本。

TextAlign

获取或设置标签中文本的对齐方式。

(继承自 Label)
Top

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

(继承自 Control)
TopLevelControl

获取其他 Windows 窗体控件未父控件的父控件。 通常,这是控件包含在的最外层 Form

(继承自 Control)
UseCompatibleTextRendering

获取或设置一个值,该值确定是否使用 Graphics 类(GDI+)或 TextRenderer 类(GDI)来呈现文本。

UseMnemonic

获取或设置一个值,该值指示控件是否将控件 Text 属性中的与字符 (> 解释为访问键前缀字符)。

(继承自 Label)
UseWaitCursor

获取或设置一个值,该值指示是否对当前控件和所有子控件使用等待游标。

(继承自 Control)
Visible

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

(继承自 Control)
VisitedLinkColor

获取或设置显示以前访问过的链接时使用的颜色。

Width

获取或设置控件的宽度。

(继承自 Control)
WindowTarget

此属性与此类无关。

(继承自 Control)

方法

名称 说明
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

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

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

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

(继承自 Control)
BeginInvoke(Action)

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

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

在创建控件的基础句柄的线程上,使用指定的参数异步执行指定的委托。

(继承自 Control)
BeginInvoke(Delegate)

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

(继承自 Control)
BringToFront()

将控件置于 z 顺序的前面。

(继承自 Control)
CalcImageRenderBounds(Image, Rectangle, ContentAlignment)

根据控件的对齐方式确定在控件中 Label 绘制的图像的大小和位置。

(继承自 Label)
Contains(Control)

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

(继承自 Control)
CreateAccessibilityInstance()

LinkLabel 控件创建新的辅助功能对象。

CreateControl()

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

(继承自 Control)
CreateControlsInstance()

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

(继承自 Control)
CreateGraphics()

Graphics创建控件。

(继承自 Control)
CreateHandle()

为此控件创建句柄。 此方法由 .NET 调用,不应由用户代码调用。 重写此方法时,继承类应始终调用 base.CreateHandle

CreateObjRef(Type)

创建一个对象,其中包含生成用于与远程对象通信的代理所需的所有相关信息。

(继承自 MarshalByRefObject)
DefWndProc(Message)

将指定的消息发送到默认窗口过程。

(继承自 Control)
DestroyHandle()

销毁与控件关联的句柄。

(继承自 Control)
Dispose()

释放该 Component命令使用的所有资源。

(继承自 Component)
Dispose(Boolean)

表示可以显示超链接的 Windows 标签控件。

Dispose(Boolean)

释放由托管资源使用 Label 的非托管资源,并选择性地释放托管资源。

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

开始拖动操作。

(继承自 Control)
DoDragDrop(Object, DragDropEffects)

开始拖放操作。

(继承自 Control)
DoDragDropAsJson<T>(T, DragDropEffects, Bitmap, Point, Boolean)

表示可以显示超链接的 Windows 标签控件。

(继承自 Control)
DoDragDropAsJson<T>(T, DragDropEffects)

表示可以显示超链接的 Windows 标签控件。

(继承自 Control)
DrawImage(Graphics, Image, Rectangle, ContentAlignment)

在指定的边界内绘制一个 Image

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

支持呈现到指定的位图。

(继承自 Control)
EndInvoke(IAsyncResult)

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

(继承自 Control)
Equals(Object)

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

(继承自 Object)
FindForm()

检索控件打开的窗体。

(继承自 Control)
Focus()

将输入焦点设置为控件。

(继承自 Control)
GetAccessibilityObjectById(Int32)

检索指定的 AccessibleObject

(继承自 Control)
GetAutoSizeMode()

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

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

检索位于指定坐标处的子控件,指定是否忽略特定类型的子控件。

(继承自 Control)
GetChildAtPoint(Point)

检索位于指定坐标处的子控件。

(继承自 Control)
GetContainerControl()

返回控件的父控件链的下一个 ContainerControl

(继承自 Control)
GetHashCode()

用作默认哈希函数。

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

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

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

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

(继承自 Control)
GetPreferredSize(Size)

检索可安装控件的矩形区域的大小。

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

检索在其中缩放控件的边界。

(继承自 Control)
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, Boolean)

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。 (可选)使分配给控件的子控件失效。

(继承自 Control)
Invalidate(Rectangle)

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

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

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。 (可选)使分配给控件的子控件失效。

(继承自 Control)
Invalidate(Region)

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

(继承自 Control)
Invoke(Action)

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

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

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

(继承自 Control)
Invoke(Delegate)

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

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

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

(继承自 Control)
InvokeAsync(Action, CancellationToken)

在拥有控件句柄的线程上异步调用指定的同步回调。

(继承自 Control)
InvokeAsync(Func<CancellationToken,ValueTask>, CancellationToken)

在拥有控件句柄的线程上执行指定的异步回调。

(继承自 Control)
InvokeAsync<T>(Func<CancellationToken,ValueTask<T>>, CancellationToken)

在拥有控件句柄的线程上执行指定的异步回调。

(继承自 Control)
InvokeAsync<T>(Func<T>, CancellationToken)

在拥有控件句柄的线程上异步调用指定的同步回调。

(继承自 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)

确定字符是否是控件识别的输入字符。

(继承自 Control)
IsInputKey(Keys)

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

(继承自 Control)
LogicalToDeviceUnits(Int32)

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

(继承自 Control)
LogicalToDeviceUnits(Size)

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

(继承自 Control)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

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

(继承自 MarshalByRefObject)
NotifyInvalidate(Rectangle)

Invalidated使用控件的指定区域引发事件,使该事件失效。

(继承自 Control)
OnAutoSizeChanged(EventArgs)

引发 AutoSizeChanged 事件。

OnAutoSizeChanged(EventArgs)

引发 AutoSizeChanged 事件。

(继承自 Label)
OnBackColorChanged(EventArgs)

引发 BackColorChanged 事件。

(继承自 Control)
OnBackgroundImageChanged(EventArgs)

引发 BackgroundImageChanged 事件。

(继承自 Control)
OnBackgroundImageLayoutChanged(EventArgs)

引发 BackgroundImageLayoutChanged 事件。

(继承自 Control)
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)

表示可以显示超链接的 Windows 标签控件。

(继承自 Control)
OnDockChanged(EventArgs)

引发 DockChanged 事件。

(继承自 Control)
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)

为事件提供处理 EnabledChanged

OnEnter(EventArgs)

引发 Enter 事件。

(继承自 Control)
OnFontChanged(EventArgs)

引发 FontChanged 事件。

OnForeColorChanged(EventArgs)

引发 ForeColorChanged 事件。

(继承自 Control)
OnGiveFeedback(GiveFeedbackEventArgs)

引发 GiveFeedback 事件。

(继承自 Control)
OnGotFocus(EventArgs)

引发 GotFocus 事件。

OnHandleCreated(EventArgs)

引发 HandleCreated 事件。

(继承自 Control)
OnHandleDestroyed(EventArgs)

引发 HandleDestroyed 事件。

(继承自 Label)
OnHelpRequested(HelpEventArgs)

引发 HelpRequested 事件。

(继承自 Control)
OnImeModeChanged(EventArgs)

引发 ImeModeChanged 事件。

(继承自 Control)
OnInvalidated(InvalidateEventArgs)

引发 Invalidated 事件。

(继承自 Control)
OnKeyDown(KeyEventArgs)

引发 OnKeyDown(KeyEventArgs) 事件。

OnKeyPress(KeyPressEventArgs)

引发 KeyPress 事件。

(继承自 Control)
OnKeyUp(KeyEventArgs)

引发 KeyUp 事件。

(继承自 Control)
OnLayout(LayoutEventArgs)

引发 Layout 事件。

(继承自 Control)
OnLeave(EventArgs)

引发 Leave 事件。

(继承自 Control)
OnLinkClicked(LinkLabelLinkClickedEventArgs)

引发 LinkClicked 事件。

OnLocationChanged(EventArgs)

引发 LocationChanged 事件。

(继承自 Control)
OnLostFocus(EventArgs)

引发 LostFocus 事件。

OnMarginChanged(EventArgs)

引发 MarginChanged 事件。

(继承自 Control)
OnMouseCaptureChanged(EventArgs)

引发 MouseCaptureChanged 事件。

(继承自 Control)
OnMouseClick(MouseEventArgs)

引发 MouseClick 事件。

(继承自 Control)
OnMouseDoubleClick(MouseEventArgs)

引发 MouseDoubleClick 事件。

(继承自 Control)
OnMouseDown(MouseEventArgs)

引发 OnMouseDown(MouseEventArgs) 事件。

OnMouseEnter(EventArgs)

引发 MouseEnter 事件。

(继承自 Label)
OnMouseHover(EventArgs)

引发 MouseHover 事件。

(继承自 Control)
OnMouseLeave(EventArgs)

引发 OnMouseLeave(EventArgs) 事件。

OnMouseMove(MouseEventArgs)

引发 OnMouseMove(MouseEventArgs) 事件。

OnMouseUp(MouseEventArgs)

引发 OnMouseUp(MouseEventArgs) 事件。

OnMouseWheel(MouseEventArgs)

引发 MouseWheel 事件。

(继承自 Control)
OnMove(EventArgs)

引发 Move 事件。

(继承自 Control)
OnNotifyMessage(Message)

通知 Windows 消息的控制。

(继承自 Control)
OnPaddingChanged(EventArgs)

引发 PaddingChanged 事件。

OnPaint(PaintEventArgs)

引发 OnPaint(PaintEventArgs) 事件。

OnPaintBackground(PaintEventArgs)

绘制控件的背景。

OnParentBackColorChanged(EventArgs)

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

(继承自 Control)
OnParentBackgroundImageChanged(EventArgs)

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

(继承自 Control)
OnParentBindingContextChanged(EventArgs)

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

(继承自 Control)
OnParentChanged(EventArgs)

引发 ParentChanged 事件。

(继承自 Label)
OnParentCursorChanged(EventArgs)

引发 CursorChanged 事件。

(继承自 Control)
OnParentDataContextChanged(EventArgs)

表示可以显示超链接的 Windows 标签控件。

(继承自 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)
OnRegionChanged(EventArgs)

引发 RegionChanged 事件。

(继承自 Control)
OnResize(EventArgs)

引发 Resize 事件。

(继承自 Control)
OnRightToLeftChanged(EventArgs)

引发 RightToLeftChanged 事件。

(继承自 Label)
OnSizeChanged(EventArgs)

引发 SizeChanged 事件。

(继承自 Control)
OnStyleChanged(EventArgs)

引发 StyleChanged 事件。

(继承自 Control)
OnSystemColorsChanged(EventArgs)

引发 SystemColorsChanged 事件。

(继承自 Control)
OnTabIndexChanged(EventArgs)

引发 TabIndexChanged 事件。

(继承自 Control)
OnTabStopChanged(EventArgs)

引发 TabStopChanged 事件。

(继承自 Control)
OnTextAlignChanged(EventArgs)

引发 TextAlignChanged 事件。

OnTextChanged(EventArgs)

为事件提供处理 TextChanged

OnValidated(EventArgs)

引发 Validated 事件。

(继承自 Control)
OnValidating(CancelEventArgs)

引发 Validating 事件。

(继承自 Control)
OnVisibleChanged(EventArgs)

引发 VisibleChanged 事件。

(继承自 Label)
PerformLayout()

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

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

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

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

获取位于指定客户端坐标处的链接。

PointToClient(Point)

将指定屏幕点的位置计算为客户端坐标。

(继承自 Control)
PointToScreen(Point)

将指定客户端点的位置计算为屏幕坐标。

(继承自 Control)
PreProcessControlMessage(Message)

在调度键盘或输入消息之前,预处理消息循环中的键盘或输入消息。

(继承自 Control)
PreProcessMessage(Message)

在调度键盘或输入消息之前,预处理消息循环中的键盘或输入消息。

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

处理命令键。

(继承自 Control)
ProcessDialogChar(Char)

处理对话字符。

(继承自 Control)
ProcessDialogKey(Keys)

处理对话键。

ProcessKeyEventArgs(Message)

处理键消息并生成相应的控制事件。

(继承自 Control)
ProcessKeyMessage(Message)

处理键盘消息。

(继承自 Control)
ProcessKeyPreview(Message)

预览键盘消息。

(继承自 Control)
ProcessMnemonic(Char)

处理助记字符。

(继承自 Label)
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)
RescaleConstantsForDpi(Int32, Int32)

提供常量,用于在发生 DPI 更改时重新缩放控件。

(继承自 Label)
ResetBackColor()

BackColor 属性重置为其默认值。

(继承自 Control)
ResetBindings()

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

(继承自 Control)
ResetCursor()

Cursor 属性重置为其默认值。

(继承自 Control)
ResetFont()

Font 属性重置为其默认值。

(继承自 Control)
ResetForeColor()

ForeColor 属性重置为其默认值。

(继承自 Control)
ResetImeMode()

ImeMode 属性重置为其默认值。

(继承自 Control)
ResetMouseEventArgs()

重置控件以处理 MouseLeave 事件。

(继承自 Control)
ResetRightToLeft()

RightToLeft 属性重置为其默认值。

(继承自 Control)
ResetText()

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

(继承自 Control)
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, Single)
已过时.
已过时.

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

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

缩放控件和任何子控件。

(继承自 Control)
Scale(SizeF)

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

(继承自 Control)
ScaleBitmapLogicalToDevice(Bitmap)

当发生 DPI 更改时,将逻辑位图值缩放为其等效的设备单位值。

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

缩放控件的位置、大小、填充和边距。

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

此方法与此类无关。

(继承自 Control)
Select()

激活控件。

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

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

SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

激活下一个控件。

(继承自 Control)
SendToBack()

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

(继承自 Control)
SetAutoSizeMode(AutoSizeMode)

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

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

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

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

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

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

执行设置此控件边界的工作。

SetClientSizeCore(Int32, Int32)

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

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

将指定的 ControlStyles 标志设置为或 truefalse

(继承自 Control)
SetTopLevel(Boolean)

将控件设置为顶级控件。

(继承自 Control)
SetVisibleCore(Boolean)

将控件设置为指定的可见状态。

(继承自 Control)
Show()

向用户显示控件。

(继承自 Control)
SizeFromClientSize(Size)

从工作区的高度和宽度确定整个控件的大小。

(继承自 Control)
SuspendLayout()

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

(继承自 Control)
ToString()

返回一个表示当前 Label类型的字符串。

(继承自 Label)
Update()

使控件在其工作区内重新绘制无效区域。

(继承自 Control)
UpdateBounds()

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

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

使用指定的大小、位置和客户端大小更新控件的边界。

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

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

(继承自 Control)
UpdateStyles()

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

(继承自 Control)
UpdateZOrder()

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

(继承自 Control)
WndProc(Message)

处理指定的 Windows 消息。

活动

名称 说明
AutoSizeChanged

AutoSize 属性的值更改时发生。

(继承自 Label)
BackColorChanged

BackColor 属性的值更改时发生。

(继承自 Control)
BackgroundImageChanged

属性 BackgroundImage 更改时发生。

(继承自 Label)
BackgroundImageLayoutChanged

属性 BackgroundImageLayout 更改时发生。

(继承自 Label)
BindingContextChanged

BindingContext 属性的值更改时发生。

(继承自 Control)
CausesValidationChanged

CausesValidation 属性的值更改时发生。

(继承自 Control)
ChangeUICues

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

(继承自 Control)
Click

单击控件时发生。

(继承自 Control)
ClientSizeChanged

ClientSize 属性的值更改时发生。

(继承自 Control)
ContextMenuChanged
已过时.

ContextMenu 属性的值更改时发生。

(继承自 Control)
ContextMenuStripChanged

ContextMenuStrip 属性的值更改时发生。

(继承自 Control)
ControlAdded

将新控件添加到该控件 Control.ControlCollection时发生。

(继承自 Control)
ControlRemoved

从中删除 Control.ControlCollection控件时发生 。

(继承自 Control)
CursorChanged

Cursor 属性的值更改时发生。

(继承自 Control)
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)
Enter

输入控件时发生。

(继承自 Control)
FontChanged

Font 属性值更改时发生。

(继承自 Control)
ForeColorChanged

ForeColor 属性值更改时发生。

(继承自 Control)
GiveFeedback

在拖动操作期间发生。

(继承自 Control)
GotFocus

当控件收到焦点时发生。

(继承自 Control)
HandleCreated

为控件创建句柄时发生。

(继承自 Control)
HandleDestroyed

当控件的句柄正在销毁时发生。

(继承自 Control)
HelpRequested

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

(继承自 Control)
ImeModeChanged

属性 ImeMode 更改时发生。

(继承自 Label)
Invalidated

当控件的显示需要重绘时发生。

(继承自 Control)
KeyDown

当用户在标签具有焦点时按键时发生。

(继承自 Label)
KeyPress

当用户在标签具有焦点时按键时发生。

(继承自 Label)
KeyUp

当用户在标签具有焦点时释放键时发生。

(继承自 Label)
Layout

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

(继承自 Control)
Leave

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

(继承自 Control)
LinkClicked

在控件中单击链接时发生。

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)
ParentChanged

Parent 属性值更改时发生。

(继承自 Control)
PreviewKeyDown

KeyDown 焦点位于此控件上时按下键时,在事件发生之前发生。

(继承自 Control)
QueryAccessibilityHelp

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

(继承自 Control)
QueryContinueDrag

在拖放操作期间发生,并使拖动源能够确定是否应取消拖放操作。

(继承自 Control)
RegionChanged

Region 属性的值更改时发生。

(继承自 Control)
Resize

调整控件大小时发生。

(继承自 Control)
RightToLeftChanged

RightToLeft 属性值更改时发生。

(继承自 Control)
SizeChanged

Size 属性值更改时发生。

(继承自 Control)
StyleChanged

当控件样式更改时发生。

(继承自 Control)
SystemColorsChanged

当系统颜色更改时发生。

(继承自 Control)
TabIndexChanged

TabIndex 属性值更改时发生。

(继承自 Control)
TabStopChanged

TabStop 属性的值更改时发生。

TabStopChanged

属性 TabStop 更改时发生。

(继承自 Label)
TextAlignChanged

当属性的值 TextAlign 发生更改时发生。

(继承自 Label)
TextChanged

Text 属性值更改时发生。

(继承自 Control)
Validated

在控件完成验证时发生。

(继承自 Control)
Validating

当控件正在验证时发生。

(继承自 Control)
VisibleChanged

Visible 属性值更改时发生。

(继承自 Control)

显式接口实现

名称 说明
IButtonControl.DialogResult

有关此成员的说明,请参阅 DialogResult

IButtonControl.NotifyDefault(Boolean)

通知 LinkLabel 控件它是默认按钮。

IButtonControl.PerformClick()

ClickLinkLabel控件生成事件。

IDropTarget.OnDragDrop(DragEventArgs)

引发 DragDrop 事件。

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

引发 DragEnter 事件。

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

引发 DragLeave 事件。

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

引发 DragOver 事件。

(继承自 Control)

适用于

另请参阅