8 instantiations of WindowsButton
UIAutomationClientsideProviders (8)
MS\Internal\AutomationProxies\WindowsButton.cs (3)
157
return new
WindowsButton
(hwnd, null, type, style, null);
348
new
WindowsButton
(hwndRadioButton, null, ButtonType.RadioButton, Misc.GetWindowStyle(hwndRadioButton) & NativeMethods.BS_TYPEMASK, accRadioButton)
420
return new
WindowsButton
(hwndParent, null, ButtonType.GroupBox, Misc.GetWindowStyle(hwndParent) & NativeMethods.BS_TYPEMASK, accParent);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
61
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
95
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
98
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
101
return new
WindowsButton
(hwnd, null, WindowsButton.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
104
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)
46
new ClientSideProviderDescription(new ClientSideProviderFactoryCallback(MS.Internal.AutomationProxies.
WindowsButton
.Create), "Button"),
MS\Internal\AutomationProxies\WindowsButton.cs (2)
173
WindowsButton
wtv = (
WindowsButton
)Create(hwnd, 0);
MS\Internal\AutomationProxies\WindowsFormsHelpers.cs (5)
61
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
95
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.CheckBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
98
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.GroupBox, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
101
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.PushButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);
104
return new WindowsButton(hwnd, null,
WindowsButton
.ButtonType.RadioButton, Misc.GetWindowStyle(hwnd) & NativeMethods.BS_TYPEMASK, acc);