创建自定义全尺寸日历控件
如何制作一个自定义控件,以更大的视图显示日历控件。就像 这个 或 Outlook 2007 中的日历视图一样。我是否必须创建自定义类或我可以尝试调整日历的大小吗?我在 WPF 中执行此操作,因此我使用 WPF Toolkit
How can I make a custom control that show the calendar control in a much larger view. Like this or like the calendar view in outlook 2007. Do I have to make a custom class or can I just attempt to resize the calendar. I am doing this in WPF so I use WPF Toolkit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要一个自定义类 - WPF 中的控件被设计为选择器,而不是时间轴上的数据显示器。也就是说,您可以尝试扩展并重新设计日历控件,以允许以您想要的形式显示数据。
如果您只是在寻找一个巨大的、可舔的日期选择器,那么您可以使用 比例因子变换使其更大,更容易被舔。
You probably need a custom class -- the control in WPF is designed to be a picker, not a displayer of data on a timeline. That stated, you could try extending, and retemplating the calandar control to allow display of data in the form you want.
if you are just looking for a huge, lickable date picker, then you could just use a scale factor transform to make it bigger, and more lickable.