Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个填充的组合框。如果焦点从 ComboBox 的一项更改为另一项,我想显示 MessageBox。但是 ComboBox 一定不能关闭,即用户只是通过 ComboBox 中的项目,但用户没有按下鼠标左键:)。
例如,一个组合框有三个项目——“x1”、“x2”和“x3”。如果用户选择“x1”,那么我想显示 MessageBox.Show("x1"),如果用户选择“x2”,那么我想显示 MessageBox.Show("It is amazing!")
怎么做?任何建议将不胜感激
我使用名为“DropDownClosed”的组合框事件,因此我可以捕捉到用户的最新选择并阅读其选择。