private void AddCaption()
{
CalendarTitleCaption titleCaption = new CalendarTitleCaption();
titleCaption.DateFormat = "yyyy年M月 (ggge年)";
titleCaption.DateFormatType = GrapeCity.Win.CalendarGrid.CalendarDateFormatType.InputMan;
titleCaption.Name = "calendarTitleCaption2";
titleCaption.Text = "{0}";
titleCaption.HorizontalAlignment = CalendarHorizontalAlignment.Center;
this.gcCalendarGrid1.TitleHeader.Children.Add(titleCaption);
}
Private Sub AddCaption()
Dim titleCaption As New CalendarTitleCaption()
titleCaption.DateFormat = "yyyy年M月 (ggge年)"
titleCaption.DateFormatType = GrapeCity.Win.CalendarGrid.CalendarDateFormatType.InputMan
titleCaption.Name = "calendarTitleCaption2"
titleCaption.Text = "{0}"
titleCaption.HorizontalAlignment = CalendarHorizontalAlignment.Center
Me.gcCalendarGrid1.TitleHeader.Children.Add(titleCaption)
End Sub