IWindowsFormsActionEditorServiceShowControl Method |
Displays a control to be used as an editor for an action.
Namespace: Kjs.AppLife.Update.Engine.Core.DesignAssembly: Kjs.AppLife.Update.Engine.Core.Design (in Kjs.AppLife.Update.Engine.Core.Design.dll) Version: 1.0.0.12 (4.0.0.0)
Syntaxvoid ShowControl(
Control editor
)
Sub ShowControl (
editor As Control
)
void ShowControl(
Control^ editor
)
abstract ShowControl :
editor : Control -> unit
Parameters
- editor
- Type: System.Windows.FormsControl
The control that will be used as an editor, or
to show no control.
Remarks
The control will be displayed until it is destroyed by the UI. Any time the control
changes the action, it should call
SetActionDirty
to ensure the UI is notified of the change, and any time it changes the
action in such a way that its validation state might change, it should call
ValidateAction on the
ActionBuilder
that displayed it.
See Also