MenuAction.Execute 事件

[本文档仅供预览,在以后的发行版中可能会发生更改。包含的空白主题用作占位符。]

执行菜单项时发生。

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

语法

声明
Public Event Execute As EventHandler(Of MenuActionEventArgs)
public event EventHandler<MenuActionEventArgs> Execute
public:
 event EventHandler<MenuActionEventArgs^>^ Execute {
    void add (EventHandler<MenuActionEventArgs^>^ value);
    void remove (EventHandler<MenuActionEventArgs^>^ value);
}
member Execute : IEvent<EventHandler<MenuActionEventArgs>,
    MenuActionEventArgs>
JScript 不支持事件。

备注

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

示例

下面的代码示例演示如何处理 Execute 事件。 该示例将所选的控件的 Background 属性设置为它的默认值。 有关更多信息,请参见演练:创建菜单提供程序

' 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("Background").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["Background"].ClearValue();
}

.NET Framework 安全性

请参见

参考

MenuAction 类

Microsoft.Windows.Design.Interaction 命名空间

PrimarySelectionContextMenuProvider

MenuGroup

ModelItem

其他资源

演练:创建菜单提供程序