如何制作绑定日期时间选择器
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 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 aSelectedDate
property that you can bind你不能..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!