MenuAction.Execute 事件

更新:2007 年 11 月

执行菜单项时发生。

命名空间:  Microsoft.Windows.Design.Interaction
程序集:  Microsoft.Windows.Design.Extensibility(在 Microsoft.Windows.Design.Extensibility.dll 中)

语法

声明
Public Event Execute As EventHandler(Of MenuActionEventArgs)
用法
Dim instance As MenuAction
Dim handler As EventHandler(Of MenuActionEventArgs)

AddHandler instance.Execute, handler
public event EventHandler<MenuActionEventArgs> Execute
public:
 event EventHandler<MenuActionEventArgs^>^ Execute {
    void add (EventHandler<MenuActionEventArgs^>^ value);
    void remove (EventHandler<MenuActionEventArgs^>^ value);
}
JScript 不支持事件。

备注

在 Execute 事件处理程序中为您的 MenuAction 实现逻辑。这通常涉及到更改表示所选控件的 ModelItem 的状态。

示例

下面的代码示例演示如何处理 Execute 事件。该示例将所选的控件的 Background 属性设置为它的默认值。有关更多信息,请参见演练:创建 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();
}

权限

另请参见

参考

MenuAction 类

MenuAction 成员

Microsoft.Windows.Design.Interaction 命名空间

PrimarySelectionContextMenuProvider

MenuGroup

ModelItem

其他资源

演练:创建 MenuAction