与从上下文菜单项触发命令有关的有趣问题......

我想触发一个命令在我的控件InsertRowCmd中插入一行。此命令需要知道插入行的位置。

我可以使用Mouse.GetPosition(),但这会让我获得当前鼠标的位置,这将位于菜单项上。我希望得到上下文菜单的来源。

是否有任何人对如何将上下文菜单的来源作为参数传递给命令有任何建议?

示例代码:

<UserControl x:Name="MyControl">
<!--...-->
        <ContextMenu x:Name="menu">
            <MenuItem Header="Insert Row" Command="{x:Static customCommands:MyCommands.InsertRowCmd}" CommandParameter="?"/>
        </ContextMenu>
</UserControl>

我目前的想法如下:

- 使用点击处理程序,以便我可以在代码中找到原点。问题是我必须处理启用/禁用。

-Handle单击事件并保存上下文菜单的来源。将此保存的信息传递给命令。我已经验证了在执行命令之前触发了click事件。

有什么想法吗?

修改

我正在使用Josh Smith的 CommandSinkBinding 将命令处理路由到我的ViewModel类。因此,处理命令执行的代码对视图一无所知。

有帮助吗?

解决方案

您需要使用 TranslatePoint ContextMenu 的左上角(0,0)转换为包含网格中的坐标。你可以通过将 CommandParameter 绑定到 ContextMenu 并使用转换器来实现:

CommandParameter="{Binding IsOpen, ElementName=_menu, Converter={StaticResource PointConverter}}"

另一种方法是附加行为,只要打开 ContextMenu ,它就会自动更新 Point 类型的附加只读属性。用法看起来像这样:

<ContextMenu x:Name="_menu" local:TrackBehavior.TrackOpenLocation="True">
    <MenuItem Command="..." CommandParameter="{Binding Path=(local:TrackBehavior.OpenLocation), ElementName=_menu}"/>
</ContextMenu>

所以 TrackOpenLocation 附加属性执行附加到 ContextMenu 的工作,并在时更新第二个附加属性( OpenLocation ) > ContextMenu 已打开。然后 MenuItem 可以绑定到 OpenLocation 以获取上次打开 ContextMenu 的位置。

其他提示

根据肯特的回答,我使用了他附属的财产建议并最终得到了这个(使用Josh Smith的附加行为的示例):

public static class TrackBehavior
{
 public static readonly DependencyProperty TrackOpenLocationProperty = DependencyProperty.RegisterAttached("TrackOpenLocation", typeof(bool), typeof(TrackBehavior), new UIPropertyMetadata(false, OnTrackOpenLocationChanged));

 public static bool GetTrackOpenLocation(ContextMenu item)
 {
  return (bool)item.GetValue(TrackOpenLocationProperty);
 }

 public static void SetTrackOpenLocation(ContextMenu item, bool value)
 {
  item.SetValue(TrackOpenLocationProperty, value);
 }

 public static readonly DependencyProperty OpenLocationProperty = DependencyProperty.RegisterAttached("OpenLocation", typeof(Point), typeof(TrackBehavior), new UIPropertyMetadata(new Point()));

 public static Point GetOpenLocation(ContextMenu item)
 {
  return (Point)item.GetValue(OpenLocationProperty);
 }

 public static void SetOpenLocation(ContextMenu item, Point value)
 {
  item.SetValue(OpenLocationProperty, value);
 }

 static void OnTrackOpenLocationChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
 {
  var menu = dependencyObject as ContextMenu;
  if (menu == null)
  {
   return;
  }

  if (!(e.NewValue is bool))
  {
   return;
  }

  if ((bool)e.NewValue)
  {
   menu.Opened += menu_Opened;

  }
  else
  {
   menu.Opened -= menu_Opened;
  }
 }

 static void menu_Opened(object sender, RoutedEventArgs e)
 {
  if (!ReferenceEquals(sender, e.OriginalSource))
  {
   return;
  }

  var menu = e.OriginalSource as ContextMenu;
  if (menu != null)
  {
   SetOpenLocation(menu, Mouse.GetPosition(menu.PlacementTarget));
  }
 }
}

然后在Xaml中使用,你只需要:

<ContextMenu x:Name="menu" Common:TrackBehavior.TrackOpenLocation="True">
 <MenuItem Command="{Binding SomeCommand}" CommandParameter="{Binding Path=(Common:TrackBehavior.OpenLocation), ElementName=menu}" Header="Menu Text"/>
</ContextMenu>

但是,我还需要添加:

NameScope.SetNameScope(menu, NameScope.GetNameScope(this));

到我的视图的构造函数,否则 CommandParameter 的绑定无法查找 ElementName = menu

除了肯特的答案之外,还要考虑一种“标准方式”。 F.E.当ListBox具有ContextMenu时,您不需要菜单的位置,因为在弹出菜单之前设置了所选项。因此,如果您的控件具有“被选中”的内容,那么在右键单击...

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top