11 instantiations of TaskDialogCommandLinkButton
Accessibility_Core_App (3)
TaskDialogTesting.cs (3)
32TaskDialogCommandLinkButton buttonCancelClose = new("C&ancel Close", allowCloseDialog: false); 33TaskDialogCommandLinkButton buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)"); 34TaskDialogCommandLinkButton buttonNavigate = new("&Navigate", allowCloseDialog: false);
WinFormsControlsTest (8)
TaskDialogSamples.cs (8)
170new TaskDialogCommandLinkButton("&Beginner", "10 mines, 9 x 9 tile grid") 174new TaskDialogCommandLinkButton("&Intermediate", "40 mines, 16 x 16 tile grid") 178new TaskDialogCommandLinkButton("&Advanced", "99 mines, 16 x 30 tile grid") 333TaskDialogButton showResultsButton = new TaskDialogCommandLinkButton("Show &Results"); 427TaskDialogCommandLinkButton restartNowButton = new("&Restart now"); 482TaskDialogCommandLinkButton buttonCancelClose = new("C&ancel Close", allowCloseDialog: false); 483TaskDialogCommandLinkButton buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)"); 484TaskDialogCommandLinkButton buttonNavigate = new("&Navigate", allowCloseDialog: false);
10 references to TaskDialogCommandLinkButton
Accessibility_Core_App (3)
TaskDialogTesting.cs (3)
32TaskDialogCommandLinkButton buttonCancelClose = new("C&ancel Close", allowCloseDialog: false); 33TaskDialogCommandLinkButton buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)"); 34TaskDialogCommandLinkButton 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)
797if (button is TaskDialogCommandLinkButton commandLink) 929if (_boundCustomButtons.Any(e => e.IsCreated && e is TaskDialogCommandLinkButton))
WinFormsControlsTest (4)
TaskDialogSamples.cs (4)
427TaskDialogCommandLinkButton restartNowButton = new("&Restart now"); 482TaskDialogCommandLinkButton buttonCancelClose = new("C&ancel Close", allowCloseDialog: false); 483TaskDialogCommandLinkButton buttonShowInnerDialog = new("&Show (modeless) Inner Dialog", "(and don't cancel the Close)"); 484TaskDialogCommandLinkButton buttonNavigate = new("&Navigate", allowCloseDialog: false);