如何制作绑定日期时间选择器

发布于 2024-09-25 20:56:56 字数 336 浏览 10 评论 0原文

我正在使用 wpf 框架 3.5 为此我必须使用 winworms ->日期时间选择器。 我需要对文本

<wfi:WindowsFormsHost >
     <wf:DateTimePicker Format="Short" Text="{Binding date, Converter={StaticResource conkey}}" x:Name="p_datePicker" />
</wfi:WindowsFormsHost>

编辑进行绑定: 答:需要使用WPF toolKit DatePicker并且不要忘记连接refrenses

I am using wpf framework 3.5 for this I had to use winworms -> datetimepicker.
I need to do Binding on the Text

<wfi:WindowsFormsHost >
     <wf:DateTimePicker Format="Short" Text="{Binding date, Converter={StaticResource conkey}}" x:Name="p_datePicker" />
</wfi:WindowsFormsHost>

EDIT:
Answer: The need to use WPF toolKit DatePicker and do not forget to connect the reffrenses

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

谢绝鈎搭 2024-10-02 20:56:56

正如 Arcturus 所解释的,您不能在 Windows 窗体控件上使用绑定。为什么不使用 WPF 工具包 DatePicker 呢?它有一个可以绑定的 SelectedDate 属性

As Arcturus explained, you can't use bindings on Windows Forms controls. Why don't you use the WPF Toolkit DatePicker instead ? It has a SelectedDate property that you can bind

我家小可爱 2024-10-02 20:56:56

你不能..WinForms

控件没有任何 DependencyProperties,因此绑定已经过时了!

在后面的代码中手动获取并设置它!

You can't..

WinForms controls do not have any DependencyProperties so Bindings are out!

Get and set it by hand in the code behind!

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