Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Defines a callback method that is invoked when a context item changes.
Namespace: Microsoft.Windows.Design
Assembly: Microsoft.Windows.Design.Extensibility (in Microsoft.Windows.Design.Extensibility.dll)
Syntax
'Declaration
Public Delegate Sub SubscribeContextCallback ( _
item As ContextItem _
)
public delegate void SubscribeContextCallback(
ContextItem item
)
public delegate void SubscribeContextCallback(
ContextItem^ item
)
type SubscribeContextCallback =
delegate of
item:ContextItem -> unit
JScript does not support delegates.
Parameters
- item
Type: Microsoft.Windows.Design.ContextItem
The context item that has changed.
Remarks
Use the Subscribe method to subscribe to change notifications on context items.
See Also
Reference
Microsoft.Windows.Design Namespace
SubscribeContextCallback<TContextItemType>