SystemEx.Windows.Forms.TaskDialog.Show C# (CSharp) Method

Show() public method

Creates, displays, and operates a task dialog. The task dialog contains application-defined messages, title, verification check box, command links and push buttons, plus any combination of predefined icons and push buttons as specified on the other members of the class before calling Show.
public Show ( ) : int
return int
        public int Show( )
        {
            bool verificationFlagChecked;
            int radioButtonResult;
            return this.Show ( IntPtr.Zero, out verificationFlagChecked, out radioButtonResult );
        }

Same methods

TaskDialog::Show ( IWin32Window owner ) : int
TaskDialog::Show ( IWin32Window owner, bool &verificationFlagChecked ) : int
TaskDialog::Show ( IWin32Window owner, bool &verificationFlagChecked, int &radioButtonResult ) : int
TaskDialog::Show ( IntPtr hwndOwner ) : int
TaskDialog::Show ( IntPtr hwndOwner, bool &verificationFlagChecked ) : int
TaskDialog::Show ( IntPtr hwndOwner, bool &verificationFlagChecked, int &radioButtonResult ) : int