WPF 日历周末着色
有没有简单的方法来为周末着色? 在 ASP.Net 中,我看到了一个带有事件 OnDayRender 的选项,如果是周末则设置背景颜色。 OnDayRender
但是什么都没有吗在 WPF 中也类似吗? 我只看到了通过覆盖样式等等的大解决方案。
Is there no simple way to coloring Weekend days?
In ASP.Net i saw a option with the Event OnDayRender and if Weekend than set BackgroundColor. OnDayRender
But is there nothing similarly in WPF?
I saw only big solution by overriding Styles and so on..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您可以找到有关如何设置日历样式的非常好的教程根据您的需要进行控制。看一下
图 8
,我认为您可以使用相同的技术为控件中的 Weekend 值着色。更新:我创建了一个示例项目,它说明了您的问题的解决方案。您可以在我的 SkyDrive:“自定义日历”。基本上,您需要使用“WeekendDaysConverter”进行一些操作。
Here you can find a very nice tutorial on how to style a Calendar control according to your needs. Have a look at
Figure 8
, I think you can use the same technique to color Weekend values in your control.Update: I've created a sample project which illustrates a solution to your issue. You can find it on my SkyDrive: "CustomizedCalendar". Basically you need to play a little bit with the "WeekendDaysConverter".