[This is preliminary documentation and is subject to change.]

If overriden in derived class shows the dialog

Namespace: Tools.WindowsT.IndependentT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected override void PerformDialog(
	bool Modal,
	Object Owner
)
Visual Basic
Protected Overrides Sub PerformDialog ( _
	Modal As Boolean, _
	Owner As Object _
)
Visual C++
protected:
virtual void PerformDialog(
	bool Modal, 
	Object^ Owner
) override
F#
abstract PerformDialog : 
        Modal:bool * 
        Owner:Object -> unit 
override PerformDialog : 
        Modal:bool * 
        Owner:Object -> unit 
JScript
protected override function PerformDialog(
	Modal : boolean, 
	Owner : Object
)

Parameters

Modal
Type: System..::..Boolean
Indicates if dialog should be shown modally (true) or modells (false)
Owner
Type: System..::..Object
Parent window of dialog (may be null). Typical values are IWin32Window and Window If implementation does not recognize type of owner it ignores it.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionState is not Created. Overriding method shall check this condition and thrown an exception if condition is vialoted.
System..::..NotImplementedExceptionAlways

See Also

Collapse/expand Version History

1.5.3