我想询问有关 wpf(或 silverlight)中组合框的实现细节

发布于 2024-10-10 02:35:58 字数 140 浏览 1 评论 0原文

我现在正在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福丶如此 2024-10-17 02:35:58

以下是 ComboBox 的标准控件模板: WPF< /a> 和 Silverlight

在 WPF 示例中,Popup 和 ToggleButton(右侧的箭头)与属性 IsDropDownOpen 绑定:

<Popup IsOpen="{TemplateBinding IsDropDownOpen}" ...

<ToggleButton IsChecked="{Binding Path=IsDropDownOpen,Mode=TwoWay,RelativeSource={RelativeSource TemplatedParent}}" ...

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:

<Popup IsOpen="{TemplateBinding IsDropDownOpen}" ...

<ToggleButton IsChecked="{Binding Path=IsDropDownOpen,Mode=TwoWay,RelativeSource={RelativeSource TemplatedParent}}" ...

A class Popup has the property StaysOpen that isn't specified in the standard template of a ComboBox and has a default value true. It follows that there is a subscription to the LostFocus event in the internal implementation of a ComboBox, that sets IsDropDownOpen=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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文