8 instantiations of WindowsButton
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\WindowsButton.cs (3)
141
return new
WindowsButton
(hwnd, null, type, style, null);
332
new
WindowsButton
(hwndRadioButton, null, ButtonType.RadioButton, Misc.GetWindowStyle(hwndRadioButton) & NativeMethods.BS_TYPEMASK, accRadioButton)
404
return new
WindowsButton
(hwndParent, null, ButtonType.GroupBox, Misc.GetWindowStyle(hwndParent) & NativeMethods.BS_TYPEMASK, accParent);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
51
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
85
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
88
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
91
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
94
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
8 references to WindowsButton
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\Main.cs (1)
35
new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.
WindowsButton
.Create), "Button"),
MS\Internal\AutomationProxies\WindowsButton.cs (2)
157
WindowsButton
wtv = (
WindowsButton
)Create(hwnd, 0);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
51
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
85
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
88
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
91
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
94
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);