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.
在我的 Windows 应用商店 (Metro) 应用程序中,我的 ComboBox 会在每次更新项目源或在代码中更改所选值/索引时触发他们的 selectionChanged() 事件。如何使这些事件仅在用户选择不同的值时触发?注意 - 我尝试寻找 SelectionChangeCommitted,但 MSVS 声称此事件不存在。
谢谢阅读!
我设法通过在页面中添加一个标志(布尔值)来修复它,该标志在加载过程中设置为 true。在设置之前, selectionChanged() 方法将在执行任何操作之前返回。