在wpf的comboBox中显示新的selecteditem后如何显示对话框?

How to show dialog after new selecteditem is shown in comboBox in wpf?

因为 example:I 有一个组合框,它有三个 items:AAAAA,BBBBB,CCCCC.Now selected 项目是 AAAAA,当我 select BBBBB, select离子改变事件被触发。我希望组合框显示当前 selected 项目(现在是 BBBBB),但是当消息框显示时,组合框仍然显示 AAAAA,就像下面的屏幕截图:

这不是我想要的,我想要组合框显示BBBBB,然后弹出消息框。我没有找到解决这个问题的方法。有人可以帮助我吗?谢谢!

您可以使用 DropDownClosed 事件。

<Window x:Class="WpfApp.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:WpfApp"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        
        <ComboBox x:Name="cbItem" Height="20" Width="150" SelectionChanged="cbItem_SelectionChanged"></ComboBox>
    </Grid>
</Window>



using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfApp
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            cbItem.Items.Add("AAAA");
            cbItem.Items.Add("BBBB");
            cbItem.Items.Add("CCCC");
        }

        private void cbItem_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            var cmb = sender as System.Windows.Controls.ComboBox;
            var str = cmb.SelectedItem;
            MessageBox.Show(str.ToString());
        }
    }
}

使用选择更改事件并从 Combobox 中获取所选项目并打印它