Classe MenuActionEventArgs
Fornece dados para MenuAction eventos.
Namespace: Microsoft.Windows.Design.Interaction
Assembly: Microsoft.Windows.Design.Extensibility (em Microsoft.Windows.Design.Extensibility.dll)
Sintaxe
Public Class MenuActionEventArgs _
Inherits EventArgs
Dim instance As MenuActionEventArgs
public class MenuActionEventArgs : EventArgs
public ref class MenuActionEventArgs : public EventArgs
public class MenuActionEventArgs extends EventArgs
Comentários
MenuActionEventArgs é usado pela UpdateItemStatus e Execute eventos.
Exemplos
O exemplo de código a seguir mostra como para manipular o Execute evento. Ele define Background propriedade com o valor padrão. Para obter mais informações, consulte Demonstra Passo a passo: Criando um MenuAction.
' The following method handles the Execute event.
' It sets the Background property to its default value.
Sub ClearBackground_Execute( _
ByVal sender As Object, _
ByVal e As MenuActionEventArgs)
Dim selectedControl As ModelItem = e.Selection.PrimarySelection
selectedControl.Properties(Control.BackgroundProperty).ClearValue()
End Sub
// The following method handles the Execute event.
// It sets the Background property to its default value.
void ClearBackground_Execute(
object sender,
MenuActionEventArgs e)
{
ModelItem selectedControl = e.Selection.PrimarySelection;
selectedControl.Properties[Control.BackgroundProperty].ClearValue();
}
Hierarquia de herança
System.Object
System.EventArgs
Microsoft.Windows.Design.Interaction.MenuActionEventArgs
Acesso thread-safe
Quaisquer membros static (Shared no Visual Basic) públicos deste tipo são thread-safe. Não há garantia de que qualquer membro de instância seja thread-safe.
Consulte também
Referência
Namespace Microsoft.Windows.Design.Interaction
PrimarySelectionContextMenuProvider