212 references to AutomationControlType
PresentationCore (51)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (43)
678
abstract protected
AutomationControlType
GetAutomationControlTypeCore();
1004
public
AutomationControlType
GetAutomationControlType()
1006
AutomationControlType
result;
1618
AutomationControlType
type = GetAutomationControlTypeCore();
1622
case
AutomationControlType
.Button: controlType = ControlType.Button; break;
1623
case
AutomationControlType
.Calendar: controlType = ControlType.Calendar; break;
1624
case
AutomationControlType
.CheckBox: controlType = ControlType.CheckBox; break;
1625
case
AutomationControlType
.ComboBox: controlType = ControlType.ComboBox; break;
1626
case
AutomationControlType
.Edit: controlType = ControlType.Edit; break;
1627
case
AutomationControlType
.Hyperlink: controlType = ControlType.Hyperlink; break;
1628
case
AutomationControlType
.Image: controlType = ControlType.Image; break;
1629
case
AutomationControlType
.ListItem: controlType = ControlType.ListItem; break;
1630
case
AutomationControlType
.List: controlType = ControlType.List; break;
1631
case
AutomationControlType
.Menu: controlType = ControlType.Menu; break;
1632
case
AutomationControlType
.MenuBar: controlType = ControlType.MenuBar; break;
1633
case
AutomationControlType
.MenuItem: controlType = ControlType.MenuItem; break;
1634
case
AutomationControlType
.ProgressBar: controlType = ControlType.ProgressBar; break;
1635
case
AutomationControlType
.RadioButton: controlType = ControlType.RadioButton; break;
1636
case
AutomationControlType
.ScrollBar: controlType = ControlType.ScrollBar; break;
1637
case
AutomationControlType
.Slider: controlType = ControlType.Slider; break;
1638
case
AutomationControlType
.Spinner: controlType = ControlType.Spinner; break;
1639
case
AutomationControlType
.StatusBar: controlType = ControlType.StatusBar; break;
1640
case
AutomationControlType
.Tab: controlType = ControlType.Tab; break;
1641
case
AutomationControlType
.TabItem: controlType = ControlType.TabItem; break;
1642
case
AutomationControlType
.Text: controlType = ControlType.Text; break;
1643
case
AutomationControlType
.ToolBar: controlType = ControlType.ToolBar; break;
1644
case
AutomationControlType
.ToolTip: controlType = ControlType.ToolTip; break;
1645
case
AutomationControlType
.Tree: controlType = ControlType.Tree; break;
1646
case
AutomationControlType
.TreeItem: controlType = ControlType.TreeItem; break;
1647
case
AutomationControlType
.Custom: controlType = ControlType.Custom; break;
1648
case
AutomationControlType
.Group: controlType = ControlType.Group; break;
1649
case
AutomationControlType
.Thumb: controlType = ControlType.Thumb; break;
1650
case
AutomationControlType
.DataGrid: controlType = ControlType.DataGrid; break;
1651
case
AutomationControlType
.DataItem: controlType = ControlType.DataItem; break;
1652
case
AutomationControlType
.Document: controlType = ControlType.Document; break;
1653
case
AutomationControlType
.SplitButton: controlType = ControlType.SplitButton; break;
1654
case
AutomationControlType
.Window: controlType = ControlType.Window; break;
1655
case
AutomationControlType
.Pane: controlType = ControlType.Pane; break;
1656
case
AutomationControlType
.Header: controlType = ControlType.Header; break;
1657
case
AutomationControlType
.HeaderItem: controlType = ControlType.HeaderItem; break;
1658
case
AutomationControlType
.Table: controlType = ControlType.Table; break;
1659
case
AutomationControlType
.TitleBar: controlType = ControlType.TitleBar; break;
1660
case
AutomationControlType
.Separator: controlType = ControlType.Separator; break;
Core\CSharp\System\Windows\Automation\Peers\ContentElementAutomationPeer.cs (2)
97
protected override
AutomationControlType
GetAutomationControlTypeCore()
99
return
AutomationControlType
.Custom;
Core\CSharp\System\Windows\Automation\Peers\GenericRootAutomationPeer.cs (2)
35
override protected
AutomationControlType
GetAutomationControlTypeCore()
37
return
AutomationControlType
.Pane;
Core\CSharp\System\Windows\Automation\Peers\UIElement3DAutomationPeer.cs (2)
147
protected override
AutomationControlType
GetAutomationControlTypeCore()
149
return
AutomationControlType
.Custom;
Core\CSharp\System\Windows\Automation\Peers\UIElementAutomationPeer.cs (2)
172
protected override
AutomationControlType
GetAutomationControlTypeCore()
174
return
AutomationControlType
.Custom;
PresentationFramework (143)
src\Framework\System\Windows\Automation\Peers\ButtonAutomationPeer.cs (2)
33
override protected
AutomationControlType
GetAutomationControlTypeCore()
35
return
AutomationControlType
.Button;
src\Framework\System\Windows\Automation\Peers\CalendarAutomationPeer.cs (2)
105
protected override
AutomationControlType
GetAutomationControlTypeCore()
107
return
AutomationControlType
.Calendar;
src\Framework\System\Windows\Automation\Peers\CalendarButtonAutomationPeer.cs (2)
48
protected override
AutomationControlType
GetAutomationControlTypeCore()
50
return
AutomationControlType
.Button;
src\Framework\System\Windows\Automation\Peers\CheckBoxAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.CheckBox;
src\Framework\System\Windows\Automation\Peers\ComboBoxAutomationPeer.cs (2)
36
override protected
AutomationControlType
GetAutomationControlTypeCore()
38
return
AutomationControlType
.ComboBox;
src\Framework\System\Windows\Automation\Peers\ContextMenuAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.Menu;
src\Framework\System\Windows\Automation\Peers\DataGridAutomationPeer.cs (2)
42
protected override
AutomationControlType
GetAutomationControlTypeCore()
44
return
AutomationControlType
.DataGrid;
src\Framework\System\Windows\Automation\Peers\DataGridCellAutomationPeer.cs (2)
38
protected override
AutomationControlType
GetAutomationControlTypeCore()
40
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\DataGridCellItemAutomationPeer.cs (2)
71
protected override
AutomationControlType
GetAutomationControlTypeCore()
73
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\DataGridColumnHeaderAutomationPeer.cs (2)
34
protected override
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.HeaderItem;
src\Framework\System\Windows\Automation\Peers\DataGridColumnHeaderItemAutomationPeer.cs (2)
31
protected override
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.HeaderItem;
src\Framework\System\Windows\Automation\Peers\DataGridColumnHeadersPresenterAutomationPeer.cs (2)
34
protected override
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.Header;
src\Framework\System\Windows\Automation\Peers\DataGridItemAutomationPeer.cs (2)
47
protected override
AutomationControlType
GetAutomationControlTypeCore()
49
return
AutomationControlType
.DataItem;
src\Framework\System\Windows\Automation\Peers\DataGridRowAutomationPeer.cs (2)
38
protected override
AutomationControlType
GetAutomationControlTypeCore()
40
return
AutomationControlType
.DataItem;
src\Framework\System\Windows\Automation\Peers\DataGridRowHeaderAutomationPeer.cs (2)
34
protected override
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.HeaderItem;
src\Framework\System\Windows\Automation\Peers\DatePickerAutomationPeer.cs (2)
87
protected override
AutomationControlType
GetAutomationControlTypeCore()
89
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (2)
178
protected override
AutomationControlType
GetAutomationControlTypeCore()
180
return
AutomationControlType
.Button;
src\Framework\System\Windows\Automation\Peers\DocumentAutomationPeer.cs (2)
105
protected override
AutomationControlType
GetAutomationControlTypeCore()
107
return
AutomationControlType
.Document;
src\Framework\System\Windows\Automation\Peers\DocumentViewerBaseAutomationPeer.cs (2)
95
protected override
AutomationControlType
GetAutomationControlTypeCore()
97
return
AutomationControlType
.Document;
src\Framework\System\Windows\Automation\Peers\ExpanderAutomationPeer.cs (2)
33
override protected
AutomationControlType
GetAutomationControlTypeCore()
35
return
AutomationControlType
.Group;
src\Framework\System\Windows\Automation\Peers\FixedPageAutomationPeer.cs (2)
32
override protected
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Pane;
src\Framework\System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (2)
121
protected override
AutomationControlType
GetAutomationControlTypeCore()
123
return
AutomationControlType
.Document;
src\Framework\System\Windows\Automation\Peers\FrameAutomationPeer.cs (2)
24
protected override
AutomationControlType
GetAutomationControlTypeCore()
26
return
AutomationControlType
.Pane;
src\Framework\System\Windows\Automation\Peers\GridViewAutomationPeer.cs (2)
52
AutomationControlType
IViewAutomationPeer.GetAutomationControlType()
54
return
AutomationControlType
.DataGrid;
src\Framework\System\Windows\Automation\Peers\GridViewCellAutomationPeer.cs (3)
47
override protected
AutomationControlType
GetAutomationControlTypeCore()
51
return
AutomationControlType
.Text;
55
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\GridViewColumnHeaderAutomationPeer.cs (2)
30
override protected
AutomationControlType
GetAutomationControlTypeCore()
32
return
AutomationControlType
.HeaderItem;
src\Framework\System\Windows\Automation\Peers\GridViewHeaderRowPresenterAutomationPeer.cs (2)
36
override protected
AutomationControlType
GetAutomationControlTypeCore()
38
return
AutomationControlType
.Header;
src\Framework\System\Windows\Automation\Peers\GridViewItemAutomationPeer.cs (2)
39
override protected
AutomationControlType
GetAutomationControlTypeCore()
41
return
AutomationControlType
.DataItem;
src\Framework\System\Windows\Automation\Peers\GroupBoxAutomationPeer.cs (2)
32
override protected
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Group;
src\Framework\System\Windows\Automation\Peers\GroupItemAutomationPeer.cs (2)
94
override protected
AutomationControlType
GetAutomationControlTypeCore()
96
return
AutomationControlType
.Group;
src\Framework\System\Windows\Automation\Peers\HwndHostAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.Pane;
src\Framework\System\Windows\Automation\Peers\HyperlinkAutomationPeer.cs (2)
43
protected override
AutomationControlType
GetAutomationControlTypeCore()
45
return
AutomationControlType
.Hyperlink;
src\Framework\System\Windows\Automation\Peers\ImageAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.Image;
src\Framework\System\Windows\Automation\Peers\InkCanvasAutomationPeer.cs (2)
32
protected override
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\InkPresenterAutomationPeer.cs (2)
32
protected override
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\IViewAutomationPeer.cs (1)
26
AutomationControlType
GetAutomationControlType();
src\Framework\System\Windows\Automation\Peers\LabelAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.Text;
src\Framework\System\Windows\Automation\Peers\ListBoxItemAutomationPeer.cs (2)
36
override protected
AutomationControlType
GetAutomationControlTypeCore()
38
return
AutomationControlType
.ListItem;
src\Framework\System\Windows\Automation\Peers\ListBoxItemWrapperAutomationPeer.cs (2)
35
override protected
AutomationControlType
GetAutomationControlTypeCore()
37
return
AutomationControlType
.ListItem;
src\Framework\System\Windows\Automation\Peers\ListViewAutomationPeer.cs (1)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
src\Framework\System\Windows\Automation\Peers\MediaElementAutomationPeer.cs (2)
23
override protected
AutomationControlType
GetAutomationControlTypeCore()
25
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\MenuAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.Menu;
src\Framework\System\Windows\Automation\Peers\MenuItemAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.MenuItem;
src\Framework\System\Windows\Automation\Peers\PasswordBoxAutomationPeer.cs (2)
54
override protected
AutomationControlType
GetAutomationControlTypeCore()
56
return
AutomationControlType
.Edit;
src\Framework\System\Windows\Automation\Peers\PopupRootAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.Window;
src\Framework\System\Windows\Automation\Peers\ProgressBarAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.ProgressBar;
src\Framework\System\Windows\Automation\Peers\RadioButtonAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.RadioButton;
src\Framework\System\Windows\Automation\Peers\RepeatButtonAutomationPeer.cs (2)
32
override protected
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Button;
src\Framework\System\Windows\Automation\Peers\RichTextBoxAutomationPeer.cs (2)
36
override protected
AutomationControlType
GetAutomationControlTypeCore()
38
return
AutomationControlType
.Document;
src\Framework\System\Windows\Automation\Peers\ScrollBarAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.ScrollBar;
src\Framework\System\Windows\Automation\Peers\ScrollViewerAutomationPeer.cs (2)
32
override protected
AutomationControlType
GetAutomationControlTypeCore()
34
return
AutomationControlType
.Pane;
src\Framework\System\Windows\Automation\Peers\SelectorAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.List;
src\Framework\System\Windows\Automation\Peers\SeparatorAutomationPeer.cs (2)
34
protected override
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.Separator;
src\Framework\System\Windows\Automation\Peers\SliderAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.Slider;
src\Framework\System\Windows\Automation\Peers\StatusBarAutomationPeer.cs (2)
34
protected override
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.StatusBar;
src\Framework\System\Windows\Automation\Peers\StatusBarItemAutomationPeer.cs (2)
35
override protected
AutomationControlType
GetAutomationControlTypeCore()
37
return
AutomationControlType
.Text;
src\Framework\System\Windows\Automation\Peers\TabControlAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.Tab;
src\Framework\System\Windows\Automation\Peers\TabItemAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.TabItem;
src\Framework\System\Windows\Automation\Peers\TableAutomationPeer.cs (2)
48
protected override
AutomationControlType
GetAutomationControlTypeCore()
50
return
AutomationControlType
.Table;
src\Framework\System\Windows\Automation\Peers\TableCellAutomationPeer.cs (2)
45
protected override
AutomationControlType
GetAutomationControlTypeCore()
47
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\TextBlockAutomationPeer.cs (2)
49
protected override
AutomationControlType
GetAutomationControlTypeCore()
51
return
AutomationControlType
.Text;
src\Framework\System\Windows\Automation\Peers\TextBoxAutomationPeer.cs (2)
36
override protected
AutomationControlType
GetAutomationControlTypeCore()
38
return
AutomationControlType
.Edit;
src\Framework\System\Windows\Automation\Peers\ThumbAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.Thumb;
src\Framework\System\Windows\Automation\Peers\ToggleButtonAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.Button;
src\Framework\System\Windows\Automation\Peers\ToolBarAutomationPeer.cs (2)
31
override protected
AutomationControlType
GetAutomationControlTypeCore()
33
return
AutomationControlType
.ToolBar;
src\Framework\System\Windows\Automation\Peers\ToolTipAutomationPeer.cs (2)
24
protected override
AutomationControlType
GetAutomationControlTypeCore()
26
return
AutomationControlType
.ToolTip;
src\Framework\System\Windows\Automation\Peers\TreeViewAutomationPeer.cs (2)
28
override protected
AutomationControlType
GetAutomationControlTypeCore()
30
return
AutomationControlType
.Tree;
src\Framework\System\Windows\Automation\Peers\TreeViewDataItemAutomationPeer.cs (2)
100
override protected
AutomationControlType
GetAutomationControlTypeCore()
102
return
AutomationControlType
.TreeItem;
src\Framework\System\Windows\Automation\Peers\TreeViewItemAutomationPeer.cs (2)
34
override protected
AutomationControlType
GetAutomationControlTypeCore()
36
return
AutomationControlType
.TreeItem;
src\Framework\System\Windows\Automation\Peers\UserControlAutomationPeer.cs (2)
24
protected override
AutomationControlType
GetAutomationControlTypeCore()
26
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\Viewport3DAutomationPeer.cs (2)
23
override protected
AutomationControlType
GetAutomationControlTypeCore()
25
return
AutomationControlType
.Custom;
src\Framework\System\Windows\Automation\Peers\WindowAutomationPeer.cs (2)
64
override protected
AutomationControlType
GetAutomationControlTypeCore()
66
return
AutomationControlType
.Window;
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\TryCatchDesigner.xaml.cs (2)
651
protected override
AutomationControlType
GetAutomationControlTypeCore()
653
return
AutomationControlType
.Button;
System.Activities.Presentation (16)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\CategoryContainerAutomationPeer.cs (4)
342
protected override
AutomationControlType
GetAutomationControlTypeCore()
344
return
AutomationControlType
.List;
441
protected override
AutomationControlType
GetAutomationControlTypeCore()
443
return
AutomationControlType
.Custom;
System.Activities.Presentation\System\Activities\Presentation\View\ActivityTypeResolver.xaml.cs (2)
303
protected override
AutomationControlType
GetAutomationControlTypeCore()
305
return
AutomationControlType
.Window;
System.Activities.Presentation\System\Activities\Presentation\View\TreeView\DesignerTreeViewItem.cs (2)
186
protected override
AutomationControlType
GetAutomationControlTypeCore()
188
return
AutomationControlType
.TreeItem;
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (2)
871
protected override
AutomationControlType
GetAutomationControlTypeCore()
873
return
AutomationControlType
.Window;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (2)
753
protected override
AutomationControlType
GetAutomationControlTypeCore()
755
return
AutomationControlType
.Custom;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (2)
920
protected override
AutomationControlType
GetAutomationControlTypeCore()
922
return
AutomationControlType
.Custom;
System.Activities.Presentation\System\Activities\Presentation\WorkflowViewElement.cs (2)
1073
protected override
AutomationControlType
GetAutomationControlTypeCore()
1075
return
AutomationControlType
.Custom;