Wpf 日历控件自定义
我有一个 wpf 形式的日历控件(WPFToolkit),我需要在其中放置一个“今天”按钮。 有办法做到这一点吗?
I have a calendar control (WPFToolkit) in a wpf form and I need to put a "Today" button in it.
Is there a way to di that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不直接继承该控件并覆盖其默认样式呢?放入该样式的“Today”按钮并在 OnApplyTemplate() 中订阅其 Click 事件...
Why not just inherit from that control and override its default style? Put in that style "Today" button and subscribe to its Click event in OnApplyTemplate()...