System.Windows.Forms
2.0.0.0
System.Windows.Forms.ToolStripItem
System.Windows.Forms.Design.ToolStripItemDesignerAvailability(System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip)
Use the class to create a label that can render text and images that can implement the and properties. The also has many properties that enable it to display one or more hyperlinks, and other properties that modify the appearance and behavior of hyperlinks.
The is like a that does not get focus by default and that does not render as pushed or highlighted.
as a hosted item supports access keys.
Use the , , and properties on a to support link control in a .
Represents a nonselectable that renders text and images and can display hyperlinks.
Constructor
To be added.
Initializes a new instance of the class.
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the image to display.
The to display on the .
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the text to display.
The text to display on the .
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the text and image to display.
The text to display on the .
The to display on the .
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the text and image to display and whether the acts as a link.
The text to display on the .
The to display on the .
true if the acts as a link; otherwise, false.
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the text and image to display, whether the acts as a link, and providing a event handler.
The text to display on the .
The to display on the .
true if the acts as a link; otherwise, false.
A event handler.
2.0.0.0
Constructor
To be added.
Initializes a new instance of the class, specifying the text and image to display, whether the acts as a link, and providing a event handler and name for the .
The text to display on the .
The to display on the .
true if the acts as a link; otherwise, false.
A event handler.
The name of the .
2.0.0.0
Property
System.Drawing.Color
To be added.
An active link is a link that is in the process of being clicked. This is similar to the depressed state of a control. You can use this property to specify the color that the link is displayed in when the link is in the process of being clicked.
There are a number of colors associated with a link. The specifies the color of all links displayed in the control. The property enables you to specify the color of a link after it has been visited by the user.
When setting this property, ensure that the color you are setting the property to does not conflict with the color of the control's background or the text does not display properly. For example, if the background color of the control is Color.Red and this property is set to Color.Red, the text is not shown properly when the link is in the process of being clicked.
Gets or sets the color used to display an active link.
2.0.0.0
Property
System.Boolean
To be added.
A is a nonselectable .
Gets a value indicating the selectable state of a .
2.0.0.0
Method
System.Windows.Forms.AccessibleObject
To be added.
To be added.
To be added.
2.0.0.0
System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)
Property
System.ComponentModel.DefaultValue(false)
System.Boolean
To be added.
To be added.
Gets or sets a value indicating whether the is a hyperlink.
2.0.0.0
Property
System.ComponentModel.DefaultValue(System.Windows.Forms.LinkBehavior.SystemDefault)
System.Windows.Forms.LinkBehavior
To be added.
This property enables you to specify the behavior of links when they are displayed in the control. For example, if you want links to be displayed with an underline only when the mouse pointer is over a link, you can set this property to LinkBehavior.HoverUnderline. For more information about the types of behaviors that can be associated with a link, see .
Gets or sets a value that represents the behavior of a link.
2.0.0.0
Property
System.Drawing.Color
To be added.
To be added.
Gets or sets the color used when displaying a normal link.
2.0.0.0
Property
System.ComponentModel.DefaultValue(false)
System.Boolean
To be added.
A control does not automatically denote that a link is a visited link. To display the link as a visited link, you can set the value of this property to true in an event handler for the click event of the . A visited link is displayed using the color specified in the property of the control.
Gets or sets a value indicating whether a link should be displayed as though it were visited.
2.0.0.0
Method
System.Void
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Raises the event.
An that contains the event data.
2.0.0.0
Method
System.Void
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Raises the event.
An that contains the event data.
2.0.0.0
Method
System.Void
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Raises the event.
An that contains the event data.
2.0.0.0
Method
System.Void
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Raises the event.
A that contains the event data.
2.0.0.0
Method
2.0.0.0
System.Boolean
This method is called to give an item the opportunity to process a mnemonic character. The method should determine whether the item is in a state to process mnemonics and if whether the given character represents a mnemonic. If so, the method should perform the action associated with the mnemonic and return true. If not, the method should return false.
The implementation relies on the host control to call the method to determine whether the given character matches a mnemonic in the item's text. In this case, the method selects the item associated with the label, or raises the event if the item cannot be selected.
Processes a mnemonic character.
true if the character was processed as a mnemonic by the control; otherwise, false.
The character to process.
Property
System.Drawing.Color
To be added.
This property enables you to specify the color that is displayed for all links in the that have been visited by the user.
When setting this property, ensure that the color you are setting the property to does not conflict with the color of the control's background or the text does not display properly. For example, if the background color of the control is Color.Red and this property is set to Color.Red, the text is not shown properly when the link is displayed as a visited link.
Gets or sets the color used when displaying a link that that has been previously visited.
2.0.0.0