BCChangeContextDialogOnShowDialog Method |
The method is invoked when
ShowDialog(IWin32Window) is being called.
Derived class must override the method to show the dialog box.
Namespace: BlueCieloECM.InnoCielo.Meridian.ClientAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.19.0)
Syntax protected abstract bool OnShowDialog(
IWin32Window owner
)
Protected MustOverride Function OnShowDialog (
owner As IWin32Window
) As Boolean
protected:
virtual bool OnShowDialog(
IWin32Window^ owner
) abstract
abstract OnShowDialog :
owner : IWin32Window -> bool
Parameters
- owner
- Type: System.Windows.FormsIWin32Window
Any object that implements the IWin32Window interface
that represents the top-level window that will own the modal dialog box.
Return Value
Type:
BooleanA value indicating whether the user confirmed the dialog operation.
See Also