Como: Open a Dialog Box
This example shows how to open a dialog box.
Exemplo
Uma caixa de diálogo é uma janela que é aberta pela instanciação de Window e chamando o ShowDialog método. ShowDialogAbre uma janela e não retornará até que a nova caixa de diálogo foi fechada. This type of window is also known as a modal window, and restricts user input.
Dim dialogBox As New CustomDialogBox()
dialogBox.ShowDialog() ' Returns when dialog box has closed
CustomDialogBox dialogBox = new CustomDialogBox();
dialogBox.ShowDialog(); // Returns when dialog box has closed
Segurança
Calling ShowDialog requires permission to use all windows and user input events without restriction.