我想询问有关 wpf(或 silverlight)中组合框的实现细节
我现在正在wpf中开发自定义控件。我使用 Combobox 作为父级。 我想知道我的自定义组合框如何像其父级一样工作。如何单击屏幕的任何部分,并且可以关闭组合框的下拉部分...我尝试了很多方法,但都无法正常工作。
有人可以提供一些文章或其他东西吗?
I am now working on a custom control in wpf. I used Combobox as parent.
I wonder how does my custom Combobox works like its parent. How can I click any part of my screen, and the dropdown part of my combobox can be closed...I tried many ways, but neither are work properly.
Can somebody give some articles or something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是 ComboBox 的标准控件模板: WPF< /a> 和 Silverlight。
在 WPF 示例中,Popup 和 ToggleButton(右侧的箭头)与属性 IsDropDownOpen 绑定:
类
Popup
具有属性StaysOpen
,但未在ComboBox 的标准模板,具有默认值true
。因此,在 ComboBox 的内部实现中存在对LostFocus
事件的订阅,每次控件失去焦点时都会设置IsDropDownOpen=false
。Silverlight 在 xaml 中没有绑定,但如果您在 .Net Reflector 中打开程序集,您会发现相同的序列。
Here is standard control templates of a ComboBox: WPF and Silverlight.
In the WPF example the Popup and the ToggleButton (the arrow on the right) are bound with the property IsDropDownOpen:
A class
Popup
has the propertyStaysOpen
that isn't specified in the standard template of a ComboBox and has a default valuetrue
. It follows that there is a subscription to theLostFocus
event in the internal implementation of a ComboBox, that setsIsDropDownOpen=false
every time when the control lose a focus.Silverlight has no bindings in xaml, but you will find the same sequence if you open the assembly in .Net Reflector.