GrapeCity CalendarGrid for Windows Forms 3.0J > CalendarGridの使い方 > カレンダーの表示形式 > 週スタイルのカレンダー > 行ヘッダを追加する |
行ヘッダを追加すると、ユーザーがヘッダのクリック操作によってカレンダーのセルを行単位で選択できます。
Imports GrapeCity.Win.CalendarGrid Dim weekView As New CalendarWeekView() GcCalendarGrid1.CalendarView = weekView Dim template As CalendarTemplate = GcCalendarGrid1.Template template.RowHeaderColumnCount = 1 template.CornerHeader.Rows(0).Cells(0).Value = "↓行ヘッダ" template.RowHeader.Rows(0).Cells(0).Value = "日付" template.RowHeader.Rows(1).Cells(0).Value = "曜日" template.RowHeader.Rows(3).Cells(0).Value = "六曜"
using GrapeCity.Win.CalendarGrid; var weekView = new CalendarWeekView(); gcCalendarGrid1.CalendarView = weekView; CalendarTemplate template = gcCalendarGrid1.Template; template.RowHeaderColumnCount = 1; template.CornerHeader.Rows[0].Cells[0].Value = "↓行ヘッダ"; template.RowHeader.Rows[0].Cells[0].Value = "日付"; template.RowHeader.Rows[1].Cells[0].Value = "曜日"; template.RowHeader.Rows[3].Cells[0].Value = "六曜";
結果は次のようになります。