CalendarView.IsGroupLabelVisible 属性

定义

获取或设置一个值,该值指示当 DisplayMode 为 Month 时,月份名称是否与月份的第一天一起显示,或者当 DisplayMode 为 Year 时,年份名称是否与年份的第一个月一起显示。

public:
 property bool IsGroupLabelVisible { bool get(); void set(bool value); };
bool IsGroupLabelVisible();

void IsGroupLabelVisible(bool value);
public bool IsGroupLabelVisible { get; set; }
var boolean = calendarView.isGroupLabelVisible;
calendarView.isGroupLabelVisible = boolean;
Public Property IsGroupLabelVisible As Boolean
<CalendarView IsGroupLabelVisible="bool" .../>

属性值

Boolean

bool

如果月份名称与月份的第一天一起显示,则为 true;否则为 false。 默认值为 false

可以使用 FirstOfMonthLabel 属性设置组标签的格式, (例如 FirstOfMonthLabelFontSize) 和 FirstOfMonthYearDecadeLabel 属性 (例如 FirstOfYearDecadeLabelFontSize) 。

适用于