问题描述:C1Schedule:开发安排日程用的应用程序
问题解答:本文讲述如何使用C1Schedule控件,简单的开发安排日程用的应用程序,呈现微软Outlook 风格和用户体验的日程表。这个日程安排的解决方案配备了五个内置视图,还有定期约会等功能。
关键代码:
- // 摘要:
- // Determines the type of view to display in the C1.Win.C1Schedule.C1Schedule
- // control.
- public enum ScheduleViewEnum
- {
- // 摘要:
- // Day view.
- DayView = 0,
- //
- // 摘要:
- // Work week view.
- WorkWeekView = 1,
- //
- // 摘要:
- // Week view.
- WeekView = 2,
- //
- // 摘要:
- // Month view.
- MonthView = 3,
- //
- // 摘要:
- // Time Line view.
- TimeLineView = 4,
- }
复制代码
效果截图:
源码下载:
C1Schedule:开发安排日程用的应用程序示例 |