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.
我有一个ListBox不应选择的项目,因为它们已被禁用。我通过绑定IsEnabled禁用该项目的属性来实现这一点。但是,我需要能够显示一个弹出窗口,显示当用户单击禁用项目时它被禁用的原因。完成这样的事情的最佳实践是什么?
ListBox
IsEnabled
你可以这样做:
在 listBox 上方创建一个隐藏的透明控件。当列表框变得不可见时,使此控件可见。在此控件上注册到 MouseDown,它将显示弹出窗口等...