6 instantiations of LinkLabel
System.Windows.Forms (6)
winforms\Managed\System\WinForms\PropertyGridInternal\HotCommands.cs (1)
75
label = new
LinkLabel
();
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
5512
this.createNewLink = new
LinkLabel
();
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (4)
158
this.linkLblMoreInformation = new System.Windows.Forms.
LinkLabel
();
169
this.linkLblName = new System.Windows.Forms.
LinkLabel
();
170
this.linkLblFromUrl = new System.Windows.Forms.
LinkLabel
();
171
this.linkLblPublisher = new System.Windows.Forms.
LinkLabel
();
45 references to LinkLabel
System.Windows.Forms (45)
winforms\Managed\System\WinForms\LinkConverter.cs (8)
83
return new
LinkLabel
.Link(values[0], values[1]);
109
if (value is
LinkLabel
.Link) {
111
LinkLabel
.Link link = (
LinkLabel
.Link)value;
128
LinkLabel
.Link link = (
LinkLabel
.Link)value;
131
info = typeof(
LinkLabel
.Link).GetConstructor(new Type[] {typeof(int), typeof(int)});
137
info = typeof(
LinkLabel
.Link).GetConstructor(new Type[] {typeof(int), typeof(int), typeof(object)});
winforms\Managed\System\WinForms\LinkLabel.cs (19)
82
/// Initializes a new default instance of the <see cref='System.Windows.Forms.
LinkLabel
'/> class.
332
/// Gets the collection of links used in a <see cref='System.Windows.Forms.
LinkLabel
'/>.
1106
/// Raises the <see cref='System.Windows.Forms.
LinkLabel
.OnLinkClicked'/> event.
1959
private
LinkLabel
owner;
1972
public LinkCollection(
LinkLabel
owner) {
1989
owner.links.Sort(
LinkLabel
.linkComparer);
2162
owner.links.Sort(
LinkLabel
.linkComparer);
2343
owner.links.Sort(
LinkLabel
.linkComparer);
2397
private
LinkLabel
owner = null;
2420
internal Link(
LinkLabel
owner) {
2509
internal
LinkLabel
Owner {
2557
owner.links.Sort(
LinkLabel
.linkComparer);
2643
public LinkLabelAccessibleObject(
LinkLabel
owner) : base(owner) {
2658
if (index >= 0 && index < ((
LinkLabel
)Owner).Links.Count) {
2659
return new LinkAccessibleObject(((
LinkLabel
)Owner).Links[index]);
2678
Link hit = ((
LinkLabel
)Owner).PointInLink(p.X, p.Y);
2692
return((
LinkLabel
)Owner).Links.Count;
2775
int charStart =
LinkLabel
.ConvertToCharIndex(link.Start, text);
2776
int charEnd =
LinkLabel
.ConvertToCharIndex(link.Start + link.Length, text);
winforms\Managed\System\WinForms\LinkLabelLinkClickedEvent.cs (6)
20
/// Provides data for the <see cref='System.Windows.Forms.
LinkLabel
.OnLinkClicked'/> event.
25
private readonly
LinkLabel
.Link link;
33
public LinkLabelLinkClickedEventArgs(
LinkLabel
.Link link) {
38
public LinkLabelLinkClickedEventArgs(
LinkLabel
.Link link, MouseButtons button) : this(link) {
56
/// Gets the <see cref='System.Windows.Forms.
LinkLabel
.Link'/> that was clicked.
59
public
LinkLabel
.Link Link {
winforms\Managed\System\WinForms\LinkLabelLinkClickedEventHandler.cs (2)
17
/// Represents the method that will handle the <see cref='System.Windows.Forms.
LinkLabel
.LinkClicked'/> event of a <see cref='System.Windows.Forms.
LinkLabel
'/>.
winforms\Managed\System\WinForms\PropertyGridInternal\HotCommands.cs (3)
26
private
LinkLabel
label;
72
public
LinkLabel
Label {
222
LinkLabel
.Link link = Label.Links.Add(links[i].X, links[i].Y, verbs[i]);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
5446
private
LinkLabel
createNewLink = null;
5509
private
LinkLabel
CreateNewLink {
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (5)
51
private System.Windows.Forms.
LinkLabel
linkLblFromUrl;
52
private System.Windows.Forms.
LinkLabel
linkLblMoreInformation;
53
private System.Windows.Forms.
LinkLabel
linkLblName;
54
private System.Windows.Forms.
LinkLabel
linkLblPublisher;
580
this.linkLblMoreInformation.Links.Add(new System.Windows.Forms.
LinkLabel
.Link(this.linkLblMoreInformation.Text.Length - strMoreInfo.Length, strMoreInfo.Length));