隐藏内容控件
下面是一幅精美的图稿,它代表了一个 WPF 表单,左侧有一个列表框,右侧有一个内容控件。 我想设置它,以便如果列表框为空,则内容控件不可见。 我应该挂钩什么属性/事件?
----- -----
| a | | c |
| b | | |
----- -----
Below is a fine piece of artwork that represents a WPF form with a listbox on the left and a content control on the right. I would like to set it so if the list box is empty, then the content control is invisible. What property/event should I hook to?
----- -----
| a | | c |
| b | | |
----- -----
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该为 ContentControl 创建一个样式,并使用触发器来确定列表何时有 0 个项目,如下所示:
You should create a Style for the the ContentControl, and use a Trigger to determine when the List has 0 items, like so: