wpf 如何为组合框触发MouseLeftButtonUp事件?

dwbf0jvd  于 2022-11-18  发布在  其他
关注(0)|答案(2)|浏览(152)

我有一个ComboBox,当用户选择一个项目时,它必须调用一个函数,该函数需要ComboBox的selectedItem作为参数。因为即使项目没有更改,也需要触发此事件,所以我不能使用SelectionChanged事件。因此,为了解决此问题,我想使用MouseLeftButtonUp,但此事件似乎不起作用。
我曾尝试使用PreviewMouseLeftButtonUp事件,该事件被触发,但ComboBox的selectedItem仅在该事件之后被修改,这对我来说太晚了。
我也尝试过MouseLeftButtonDown事件,但它也不起作用。
WPF:

<Window x:Class="WpfApp1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApp1"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <ComboBox x:Name="cb" VerticalAlignment="Top" HorizontalAlignment="Left" IsHitTestVisible="True"
                  PreviewMouseLeftButtonUp="Cb_PreviewMouseLeftButtonUp"
                  MouseLeftButtonUp="Cb_MouseLeftButtonUp"
                  MouseLeftButtonDown="Cb_MouseLeftButtonDown"
                  SelectionChanged="Cb_SelectionChanged"/>
    </Grid>
</Window>

用于测试的C#:

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace WpfApp1 {
    public partial class MainWindow : Window {
        public MainWindow() {
            InitializeComponent();
            cb.Items.Add("a");
            cb.Items.Add("b");
        }
        private void Cb_PreviewMouseLeftButtonUp(object sender, MouseButtonEventArgs e) {
            Console.WriteLine("event : Preview mouse UP");
        }
        private void Cb_MouseLeftButtonUp(object sender, MouseButtonEventArgs e) {
            Console.WriteLine("event : Mouse UP"); // Doesn't fire
        }
        private void Cb_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) {
            Console.WriteLine("event : Mouse DOWN"); // Doesn't fire either
        }
        private void Cb_SelectionChanged(object sender, SelectionChangedEventArgs e) {
            Console.WriteLine("event : selection changed"); // Only fire if the selected item change
        }
    }
}

所以基本上我只想知道是否有可能触发MouseLeftButtonUp事件。

irlmq6kh

irlmq6kh1#

即使您选择已选定的元素,DropDownClosed也将激发。

5tmbdcev

5tmbdcev2#

多亏了mami,我找到了解决方案:

this.AddHandler(
    ComboBox.MouseLeftButtonUpEvent,
    new MouseButtonEventHandler(Cb_MouseLeftButtonUp),
    true
);

更多信息here

相关问题