11 instantiations of TaskDialogCommandLinkButton
Accessibility_Core_App (3)
TaskDialogTesting.cs (3)
32
TaskDialogCommandLinkButton buttonCancelClose =
new
("C&ancel Close", allowCloseDialog: false);
33
TaskDialogCommandLinkButton buttonShowInnerDialog =
new
("&Show (modeless) Inner Dialog", "(and don't cancel the Close)");
34
TaskDialogCommandLinkButton buttonNavigate =
new
("&Navigate", allowCloseDialog: false);
WinFormsControlsTest (8)
TaskDialogSamples.cs (8)
170
new
TaskDialogCommandLinkButton
("&Beginner", "10 mines, 9 x 9 tile grid")
174
new
TaskDialogCommandLinkButton
("&Intermediate", "40 mines, 16 x 16 tile grid")
178
new
TaskDialogCommandLinkButton
("&Advanced", "99 mines, 16 x 30 tile grid")
333
TaskDialogButton showResultsButton = new
TaskDialogCommandLinkButton
("Show &Results");
427
TaskDialogCommandLinkButton restartNowButton =
new
("&Restart now");
482
TaskDialogCommandLinkButton buttonCancelClose =
new
("C&ancel Close", allowCloseDialog: false);
483
TaskDialogCommandLinkButton buttonShowInnerDialog =
new
("&Show (modeless) Inner Dialog", "(and don't cancel the Close)");
484
TaskDialogCommandLinkButton buttonNavigate =
new
("&Navigate", allowCloseDialog: false);
10 references to TaskDialogCommandLinkButton
Accessibility_Core_App (3)
TaskDialogTesting.cs (3)
32
TaskDialogCommandLinkButton
buttonCancelClose = new("C&ancel Close", allowCloseDialog: false);
33
TaskDialogCommandLinkButton
buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)");
34
TaskDialogCommandLinkButton
buttonNavigate = new("&Navigate", allowCloseDialog: false);
System.Windows.Forms (3)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogButton.cs (1)
24
/// Note: It's not possible to show both custom buttons and command links (<see cref="
TaskDialogCommandLinkButton
"/> instances)
System\Windows\Forms\Dialogs\TaskDialog\TaskDialogPage.cs (2)
797
if (button is
TaskDialogCommandLinkButton
commandLink)
929
if (_boundCustomButtons.Any(e => e.IsCreated && e is
TaskDialogCommandLinkButton
))
WinFormsControlsTest (4)
TaskDialogSamples.cs (4)
427
TaskDialogCommandLinkButton
restartNowButton = new("&Restart now");
482
TaskDialogCommandLinkButton
buttonCancelClose = new("C&ancel Close", allowCloseDialog: false);
483
TaskDialogCommandLinkButton
buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)");
484
TaskDialogCommandLinkButton
buttonNavigate = new("&Navigate", allowCloseDialog: false);