10 references to StaticText
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleRoleControlTypeMap.cs (1)
72
{ AccessibleRole.
StaticText
, UIA_CONTROLTYPE_ID.UIA_TextControlTypeId },
System\Windows\Forms\Controls\Labels\Label.LabelAccessibleObject.cs (1)
14
public override AccessibleRole Role => this.GetOwnerAccessibleRole(AccessibleRole.
StaticText
);
System\Windows\Forms\Controls\ToolStrips\ToolStripLabel.ToolStripLabelAccessibleObject.cs (1)
41
return _owningToolStripLabel.IsLink ? AccessibleRole.Link : AccessibleRole.
StaticText
;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
243
? IsReadOnly() ? AccessibleRole.
StaticText
: AccessibleRole.Text
System.Windows.Forms.Tests (6)
System\Windows\Forms\AccessibleObjects\Control.ControlAccessibleObjectTests.cs (1)
793
yield return new object[] { AccessibleRole.
StaticText
};
System\Windows\Forms\AccessibleObjects\LabelAccessibleObjectTests.cs (1)
66
Assert.Equal(AccessibleRole.
StaticText
, actual);
System\Windows\Forms\AccessibleObjects\LinkLabel.LinkLabelAccessibleObjectTests.cs (1)
71
Assert.Equal(AccessibleRole.
StaticText
, actual);
System\Windows\Forms\AccessibleObjects\ToolStripLabel.ToolStripLabelAccessibleObjectTests.cs (1)
37
[InlineData(false, AccessibleRole.
StaticText
)]
System\Windows\Forms\AccessibleObjects\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObjectTests.cs (1)
36
[InlineData(false, AccessibleRole.
StaticText
)]
System\Windows\Forms\AccessibleRoleControlTypeMapTests.cs (1)
98
yield return new object[] { AccessibleRole.
StaticText
, UIA_CONTROLTYPE_ID.UIA_TextControlTypeId };