Intersoft.Client.UI.Aqua.UXDesktop Namespace > UXDialogBox Class : DialogResult Property |
<CategoryAttribute("Common Properties")> Public Property DialogResult As DialogResult
Dim instance As UXDialogBox Dim value As DialogResult instance.DialogResult = value value = instance.DialogResult
[CategoryAttribute("Common Properties")] public DialogResult DialogResult {get; set;}
[CategoryAttribute("Common Properties")] public: property DialogResult DialogResult { DialogResult get(); void set ( DialogResult value); }
private void UXButton1_Click(object sender, RoutedEventArgs e) { EditDialogBox dialogBox = new EditDialogBox(); dialogBox.ShowDialog( // show dialog box in standalone mode null, // callback handler for the close event (dialogResult) => { if (dialogResult == Intersoft.Client.Framework.DialogResult.OK) { MessageBox.Show("The dialog box result is OK"); } }); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2