WPF 左键单击弹出菜单 ContextMenu
2021-07-15 12:13
标签:弹出菜单 vat his html name 直接 obj span xaml WPF中的ContextMenu在XAML中可直接做出来,但是仅限于右键弹出菜单,如果需要添加左键弹出功能,只需要在事件中添加Click事件 XMAL代码如下 添加click事件的代码如下: 左键便可以弹出菜单 WPF 左键单击弹出菜单 ContextMenu 标签:弹出菜单 vat his html name 直接 obj span xaml 原文地址:https://www.cnblogs.com/lonelyxmas/p/9510893.html private void s_Click(object sender, RoutedEventArgs e)
{
this.menu.PlacementTarget = this.s;
this.menu.IsOpen = true;
}
下一篇:c#静态方法和非静态方法区别