[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Ein generischer Delegat für kontextgebundene Befehle.
Namespace: DynamicNode.Ext.GuiAssembly: DNExtGui (in DNExtGui.dll) Version: 1.0.4679.19833 (1.0.0.0)
Syntax
C# |
---|
public delegate void ActionHandler<TAppCore, TContext>(
TAppCore appCore,
TContext context
)
|
Visual Basic |
---|
Public Delegate Sub ActionHandler(Of TAppCore, TContext) ( _
appCore As TAppCore, _
context As TContext _
) |
F# |
---|
type ActionHandler =
delegate of
appCore:'TAppCore *
context:'TContext -> unit |
Parameters
- appCore
- Type: TAppCore
Der Kern der Anwendung.
- context
- Type: TContext
Der Kontext des Befehls.
Type Parameters
- TAppCore
- Der Type des Anwendungskerns.
- TContext
- Der Type des Kontextes.
See Also