Base:
property
Text
System.Windows.Forms.Label.Text
13 writes to Text
System.Windows.Forms (13)
winforms\Managed\System\WinForms\PropertyGridInternal\HotCommands.cs (2)
176Label.Text = null; 218Label.Text = sb.ToString();
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6006CreateNewLink.Text = editor.Text;
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (10)
462this.linkLblName.Text = this.m_appName; 476this.linkLblFromUrl.Text = this.m_deploymentUrl; 480this.linkLblPublisher.Text = SR.GetString(SR.TrustManagerPromptUI_UnknownPublisher); 488this.linkLblPublisher.Text = this.m_publisherName; 543this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_InstalledAppBlockedWarning); 547this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_RunAppBlockedWarning); 562this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_InstallFromLocalMachineWarning, strMoreInfo); 566this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_RunFromLocalMachineWarning, strMoreInfo); 571this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_InstallWarning, strMoreInfo); 575this.linkLblMoreInformation.Text = SR.GetString(SR.TrustManagerPromptUI_RunWarning, strMoreInfo);
29 references to Text
System.Windows.Forms (29)
winforms\Managed\System\WinForms\LinkLabel.cs (22)
576StringInfo stringInfo = new StringInfo( this.Text ); 639if (Text.Length == 0) { 647string text = Text; 737if (String.IsNullOrEmpty(Text)) { 751string text = Text; 782if (links == null || links.Count != 1 || Text == null) { 785StringInfo stringInfo = new StringInfo(Text); 857return(0 <= start && start < Text.Length && 0 < length); 1137if (Text.Length == 0) { 1182Size requiredSize = MeasureTextCache.GetTextSize(Text, Font, finalRectSize, CreateTextFormatFlags(finalRectSize)); 1250ControlPaint.DrawStringDisabled(e.Graphics, Text, Font, DisabledColor, ClientRectWithPadding, stringFormat); 1264ControlPaint.DrawStringDisabled(e.Graphics, Text, Font, foreColor, clientRectWidthPadding, CreateTextFormatFlags(clientRectWidthPadding.Size)); 1425g.DrawString(Text, font, useBrush, ClientRectWithPadding, stringFormat); 1446TextRenderer.DrawText(g, Text, font, clientRectWithPadding, brushColor, CreateTextFormatFlags(clientRectWithPadding.Size)); 1484g.DrawString(Text, font, foreBrush, ClientRectWithPadding, stringFormat); 1499TextRenderer.DrawText(g, Text, font, clientRectWithPadding, color, CreateTextFormatFlags(clientRectWithPadding.Size)); 1517string text = Text; 1604string text = Text; 1865string text = Text; 2470if (owner != null && !String.IsNullOrEmpty(owner.Text)) { 2471StringInfo stringInfo = new StringInfo(owner.Text); 2764string text = link.Owner.Text;
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (7)
107this.linkLblName.AccessibleName = this.linkLblName.Text; 109this.linkLblFromUrl.AccessibleName = this.linkLblFromUrl.Text; 111this.linkLblPublisher.AccessibleName = this.linkLblPublisher.Text; 122this.linkLblMoreInformation.AccessibleName = this.linkLblMoreInformation.Text; 483this.linkLblPublisher.Links.Add(0, this.linkLblPublisher.Text.Length); 580this.linkLblMoreInformation.Links.Add(new System.Windows.Forms.LinkLabel.Link(this.linkLblMoreInformation.Text.Length - strMoreInfo.Length, strMoreInfo.Length)); 727toolTipFromUrl.Show(linkLblFromUrl.Text, linkLblFromUrl);