简体   繁体   English

左键单击打开按钮ContextMenu

[英]Open Buttons ContextMenu on Left Click

I have a button with a context menu, my requirements are to show the context menu on left click 我有一个带有上下文菜单的按钮,我的要求是在单击鼠标左键时显示上下文菜单

The problem is that the <ContextMenu ItemsSource="{Binding LineItems}" isn't being updated/refresh when the context menu opens. 问题是打开上下文菜单时, <ContextMenu ItemsSource="{Binding LineItems}"不会被更新/刷新。 However If i right click first, items are loaded fine 但是,如果我先右键单击,项目会很好地加载

XAML XAML

<Button  x:Name="BtnMessageChannel" Click="BtnMessageChannel_Click" Grid.Row="0" Grid.Column="2" Height="23" Width="23" ToolTip="Message Channel" >
    <Button.ContextMenu>
        <ContextMenu ItemsSource="{Binding LineItems}" x:Name="CtxMessageChannel">
            <ContextMenu.Resources>
                <Image x:Key="img" Source="{Binding Icon}" x:Shared="false"/>
                <Style TargetType="{x:Type MenuItem}">
                    <Setter Property="Header" Value="{Binding DisplayName}"/>
                    <Setter Property="Icon" Value="{StaticResource img}">
                    </Setter>
                </Style>
            </ContextMenu.Resources>
        </ContextMenu>
    </Button.ContextMenu>
    <Image Source="Images/mail_send.png" HorizontalAlignment="Left" Width="16" />
</Button>

Code Behind 背后的代码

private void BtnMessageChannel_Click(object sender, RoutedEventArgs e)
{
   BtnMessageChannel.ContextMenu.GetBindingExpression(ContextMenu.ItemsSourceProperty)
            .UpdateTarget();  
   BtnMessageChannel.ContextMenu.Visibility = Visibility.Visible;
   BtnMessageChannel.ContextMenu.IsOpen = true;

}

Is there any easy solutions to this problem? 是否有解决此问题的简便方法?

An easy solution is to update your button event handler to simulate a right click if the context menu is not currently open. 一个简单的解决方案是,如果上下文菜单当前未打开,则更新按钮事件处理程序以模拟右键单击。

    private void BtnMessageChannel_Click(object sender, RoutedEventArgs e)
    {
        if (!BtnMessageChannel.ContextMenu.IsOpen)
        {
            e.Handled = true;

            var mouseRightClickEvent = new MouseButtonEventArgs(Mouse.PrimaryDevice, Environment.TickCount, MouseButton.Right)
            {
                RoutedEvent = Mouse.MouseUpEvent,
                Source = sender,
            };
            InputManager.Current.ProcessInput(mouseRightClickEvent);
        }
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM