private static TaskDialogResult ShowEmulatedTaskDialog(TaskDialogOptions options) { TaskDialog td = new TaskDialog(); TaskDialogViewModel tdvm = new TaskDialogViewModel(options); td.DataContext = tdvm; if (options.Owner != null) { td.Owner = options.Owner; } td.ShowDialog(); TaskDialogResult result = null; int diagResult = -1; TaskDialogSimpleResult simpResult = TaskDialogSimpleResult.None; bool verificationChecked = false; int radioButtonResult = -1; int? commandButtonResult = null; int? customButtonResult = null; diagResult = tdvm.DialogResult; verificationChecked = tdvm.VerificationChecked; if (diagResult >= CommandButtonIDOffset) { simpResult = TaskDialogSimpleResult.Command; commandButtonResult = diagResult - CommandButtonIDOffset; } else if (diagResult >= RadioButtonIDOffset) { simpResult = TaskDialogSimpleResult.Radio; radioButtonResult = diagResult - RadioButtonIDOffset; } else if (diagResult >= CustomButtonIDOffset) { simpResult = TaskDialogSimpleResult.Custom; customButtonResult = diagResult - CustomButtonIDOffset; } // This occurs usually when the red X button is clicked else if (diagResult == -1) { simpResult = TaskDialogSimpleResult.Cancel; } else { simpResult = (TaskDialogSimpleResult)diagResult; } result = new TaskDialogResult( simpResult, (String.IsNullOrEmpty(options.VerificationText) ? null : (bool?)verificationChecked), ((options.RadioButtons == null || options.RadioButtons.Length == 0) ? null : (int?)radioButtonResult), ((options.CommandButtons == null || options.CommandButtons.Length == 0) ? null : commandButtonResult), ((options.CustomButtons == null || options.CustomButtons.Length == 0) ? null : customButtonResult)); return result; }
private static TaskDialogResult ShowTaskDialog(TaskDialogOptions options) { VistaTaskDialog vtd = new VistaTaskDialog(); vtd.WindowTitle = options.Title; vtd.MainInstruction = options.MainInstruction; vtd.Content = options.Content; vtd.ExpandedInformation = options.ExpandedInfo; vtd.Footer = options.FooterText; if (options.CommandButtons != null && options.CommandButtons.Length > 0) { List<VistaTaskDialogButton> lst = new List<VistaTaskDialogButton>(); for (int i = 0; i < options.CommandButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = CommandButtonIDOffset + i; button.ButtonText = options.CommandButtons[i]; lst.Add(button); } catch (FormatException) { } } vtd.Buttons = lst.ToArray(); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0 && options.DefaultButtonIndex.Value < vtd.Buttons.Length) vtd.DefaultButton = vtd.Buttons[options.DefaultButtonIndex.Value].ButtonId; } else if (options.RadioButtons != null && options.RadioButtons.Length > 0) { List<VistaTaskDialogButton> lst = new List<VistaTaskDialogButton>(); for (int i = 0; i < options.RadioButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = RadioButtonIDOffset + i; button.ButtonText = options.RadioButtons[i]; lst.Add(button); } catch (FormatException) { } } vtd.RadioButtons = lst.ToArray(); vtd.NoDefaultRadioButton = (!options.DefaultButtonIndex.HasValue || options.DefaultButtonIndex.Value == -1); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0 && options.DefaultButtonIndex.Value < vtd.RadioButtons.Length) vtd.DefaultButton = vtd.RadioButtons[options.DefaultButtonIndex.Value].ButtonId; } bool hasCustomCancel = false; if (options.CustomButtons != null && options.CustomButtons.Length > 0) { List<VistaTaskDialogButton> lst = new List<VistaTaskDialogButton>(); for (int i = 0; i < options.CustomButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = CustomButtonIDOffset + i; button.ButtonText = options.CustomButtons[i]; if (!hasCustomCancel) { hasCustomCancel = (button.ButtonText == "Close" || button.ButtonText == "Cancel"); } lst.Add(button); } catch (FormatException) { } } vtd.Buttons = lst.ToArray(); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex.Value >= 0 && options.DefaultButtonIndex.Value < vtd.Buttons.Length) vtd.DefaultButton = vtd.Buttons[options.DefaultButtonIndex.Value].ButtonId; vtd.CommonButtons = VistaTaskDialogCommonButtons.None; } else { vtd.CommonButtons = ConvertCommonButtons(options.CommonButtons); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0) vtd.DefaultButton = GetButtonIdForCommonButton(options.CommonButtons, options.DefaultButtonIndex.Value); } vtd.MainIcon = options.MainIcon; vtd.FooterIcon = options.FooterIcon; vtd.EnableHyperlinks = false; vtd.ShowProgressBar = false; vtd.AllowDialogCancellation = (options.AllowDialogCancellation || hasCustomCancel || options.CommonButtons == TaskDialogCommonButtons.Close || options.CommonButtons == TaskDialogCommonButtons.OKCancel || options.CommonButtons == TaskDialogCommonButtons.YesNoCancel); vtd.CallbackTimer = false; vtd.ExpandedByDefault = false; vtd.ExpandFooterArea = false; vtd.PositionRelativeToWindow = true; vtd.RightToLeftLayout = false; vtd.NoDefaultRadioButton = false; vtd.CanBeMinimized = false; vtd.ShowMarqueeProgressBar = false; vtd.UseCommandLinks = (options.CommandButtons != null && options.CommandButtons.Length > 0); vtd.UseCommandLinksNoIcon = false; vtd.VerificationText = options.VerificationText; vtd.VerificationFlagChecked = false; vtd.ExpandedControlText = "Hide details"; vtd.CollapsedControlText = "Show details"; vtd.Callback = null; TaskDialogResult result = null; int diagResult = 0; TaskDialogSimpleResult simpResult = TaskDialogSimpleResult.None; bool verificationChecked = false; int radioButtonResult = -1; int? commandButtonResult = null; int? customButtonResult = null; diagResult = vtd.Show((vtd.CanBeMinimized ? null : options.Owner), out verificationChecked, out radioButtonResult); if (diagResult >= CommandButtonIDOffset) { simpResult = TaskDialogSimpleResult.Command; commandButtonResult = diagResult - CommandButtonIDOffset; } else if (radioButtonResult >= RadioButtonIDOffset) { simpResult = TaskDialogSimpleResult.Radio; radioButtonResult -= RadioButtonIDOffset; } else if (diagResult >= CustomButtonIDOffset) { simpResult = TaskDialogSimpleResult.Custom; customButtonResult = diagResult - CustomButtonIDOffset; } else { simpResult = (TaskDialogSimpleResult)diagResult; } result = new TaskDialogResult( simpResult, (String.IsNullOrEmpty(options.VerificationText) ? null : (bool?)verificationChecked), ((options.RadioButtons == null || options.RadioButtons.Length == 0) ? null : (int?)radioButtonResult), ((options.CommandButtons == null || options.CommandButtons.Length == 0) ? null : commandButtonResult), ((options.CustomButtons == null || options.CustomButtons.Length == 0) ? null : customButtonResult)); return result; }
private static TaskDialogResult ShowTaskDialog(TaskDialogOptions options) { VistaTaskDialog vtd = new VistaTaskDialog(); vtd.WindowTitle = options.Title; vtd.MainInstruction = options.MainInstruction; vtd.Content = options.Content; vtd.ExpandedInformation = options.ExpandedInfo; vtd.Footer = options.FooterText; if (options.CommandButtons != null && options.CommandButtons.Length > 0) { List <VistaTaskDialogButton> lst = new List <VistaTaskDialogButton>(); for (int i = 0; i < options.CommandButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = CommandButtonIDOffset + i; button.ButtonText = options.CommandButtons[i]; lst.Add(button); } catch (FormatException) { } } vtd.Buttons = lst.ToArray(); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0 && options.DefaultButtonIndex.Value < vtd.Buttons.Length) { vtd.DefaultButton = vtd.Buttons[options.DefaultButtonIndex.Value].ButtonId; } } else if (options.RadioButtons != null && options.RadioButtons.Length > 0) { List <VistaTaskDialogButton> lst = new List <VistaTaskDialogButton>(); for (int i = 0; i < options.RadioButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = RadioButtonIDOffset + i; button.ButtonText = options.RadioButtons[i]; lst.Add(button); } catch (FormatException) { } } vtd.RadioButtons = lst.ToArray(); vtd.NoDefaultRadioButton = (!options.DefaultButtonIndex.HasValue || options.DefaultButtonIndex.Value == -1); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0 && options.DefaultButtonIndex.Value < vtd.RadioButtons.Length) { vtd.DefaultButton = vtd.RadioButtons[options.DefaultButtonIndex.Value].ButtonId; } } bool hasCustomCancel = false; if (options.CustomButtons != null && options.CustomButtons.Length > 0) { List <VistaTaskDialogButton> lst = new List <VistaTaskDialogButton>(); for (int i = 0; i < options.CustomButtons.Length; i++) { try { VistaTaskDialogButton button = new VistaTaskDialogButton(); button.ButtonId = CustomButtonIDOffset + i; button.ButtonText = options.CustomButtons[i]; if (!hasCustomCancel) { hasCustomCancel = (button.ButtonText == "Close" || button.ButtonText == "Cancel"); } lst.Add(button); } catch (FormatException) { } } vtd.Buttons = lst.ToArray(); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex.Value >= 0 && options.DefaultButtonIndex.Value < vtd.Buttons.Length) { vtd.DefaultButton = vtd.Buttons[options.DefaultButtonIndex.Value].ButtonId; } vtd.CommonButtons = VistaTaskDialogCommonButtons.None; } else { vtd.CommonButtons = ConvertCommonButtons(options.CommonButtons); if (options.DefaultButtonIndex.HasValue && options.DefaultButtonIndex >= 0) { vtd.DefaultButton = GetButtonIdForCommonButton(options.CommonButtons, options.DefaultButtonIndex.Value); } } vtd.MainIcon = options.MainIcon; vtd.FooterIcon = options.FooterIcon; vtd.EnableHyperlinks = false; vtd.ShowProgressBar = false; vtd.AllowDialogCancellation = (options.AllowDialogCancellation || hasCustomCancel || options.CommonButtons == TaskDialogCommonButtons.Close || options.CommonButtons == TaskDialogCommonButtons.OKCancel || options.CommonButtons == TaskDialogCommonButtons.YesNoCancel); vtd.CallbackTimer = false; vtd.ExpandedByDefault = false; vtd.ExpandFooterArea = false; vtd.PositionRelativeToWindow = true; vtd.RightToLeftLayout = false; vtd.NoDefaultRadioButton = false; vtd.CanBeMinimized = false; vtd.ShowMarqueeProgressBar = false; vtd.UseCommandLinks = (options.CommandButtons != null && options.CommandButtons.Length > 0); vtd.UseCommandLinksNoIcon = false; vtd.VerificationText = options.VerificationText; vtd.VerificationFlagChecked = false; vtd.ExpandedControlText = "Hide details"; vtd.CollapsedControlText = "Show details"; vtd.Callback = null; TaskDialogResult result = null; int diagResult = 0; TaskDialogSimpleResult simpResult = TaskDialogSimpleResult.None; bool verificationChecked = false; int radioButtonResult = -1; int? commandButtonResult = null; int? customButtonResult = null; diagResult = vtd.Show((vtd.CanBeMinimized ? null : options.Owner), out verificationChecked, out radioButtonResult); if (diagResult >= CommandButtonIDOffset) { simpResult = TaskDialogSimpleResult.Command; commandButtonResult = diagResult - CommandButtonIDOffset; } else if (radioButtonResult >= RadioButtonIDOffset) { simpResult = TaskDialogSimpleResult.Radio; radioButtonResult -= RadioButtonIDOffset; } else if (diagResult >= CustomButtonIDOffset) { simpResult = TaskDialogSimpleResult.Custom; customButtonResult = diagResult - CustomButtonIDOffset; } else { simpResult = (TaskDialogSimpleResult)diagResult; } result = new TaskDialogResult( simpResult, (String.IsNullOrEmpty(options.VerificationText) ? null : (bool?)verificationChecked), ((options.RadioButtons == null || options.RadioButtons.Length == 0) ? null : (int?)radioButtonResult), ((options.CommandButtons == null || options.CommandButtons.Length == 0) ? null : commandButtonResult), ((options.CustomButtons == null || options.CustomButtons.Length == 0) ? null : customButtonResult)); return(result); }
/// <summary> /// Initializes a new instance of the <see cref="TaskDialogClosedEventArgs"/> class. /// </summary> /// <param name="result">The result of the TaskDialog.</param> internal TaskDialogClosedEventArgs(TaskDialogResult result) { Result = result; }