DayPilotCalendar:如何显示周日至周六没有日期的日期名称?

时间:2015-08-24 11:22:16

标签: .net visual-studio date visual-studio-2012 daypilot

如何显示DayPilotCalendar中没有日期的星期日到星期六的天数名称?

我想放在屏幕上:

Sun , Mon .... Sat 

谢谢

3 个答案:

答案 0 :(得分:0)

你想要的是将HeaderDateFormat设置为“dddd”,它只会给你一周中的某一天。

有关如何使用日期格式的更多示例,请参阅以下页面https://www.daypilot.org/choosing_headerdateformat_datetime_tostring_parameters/

答案 1 :(得分:0)

您只需将标题格式添加到DayPilot:DayPilotCalendar

即可
  

DayPilot:DayPilotCalendar ID =“DayPilotCalendar1”runat =“server”       headerDateFormat =“dddd”

答案 2 :(得分:0)

您可以使用headerDateFormat属性在列标题中指定日期格式。它接受DayPilot.Date.toString(pattern)格式字符串。

如果未指定headerDateFormat,则将使用当前datePattern的{​​{1}}值。

实施例

locale

详细了解https://doc.daypilot.org/calendar/header-date-format/