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 (in Microsoft.Windows.Design.dll)
Syntax
'Declaration
Public Delegate Sub SubscribeContextCallback ( _
item As ContextItem _
)
'Usage
Dim instance As New SubscribeContextCallback(AddressOf HandlerMethod)
public delegate void SubscribeContextCallback(
ContextItem item
)
public delegate void SubscribeContextCallback(
ContextItem^ item
)
JScript does not support delegates.
Parameters
item
Type: Microsoft.Windows.Design.ContextItemThe 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<ContextItemType>