PowerTools CalendarGrid for Windows Forms 1.0J
CalendarListView クラス
メンバ  使用例 

日付を 1 日ずつ表示する日リストビューを表します。それぞれの日を横向きまたは縦向きに表示できます。DayCount は、1 つのビューに表示する日数を指定します。
構文
Public Class CalendarListView 
   Inherits CalendarView
public class CalendarListView : CalendarView 
使用例
次のサンプルコードは、CalendarListView の使用方法を示します。このサンプルコードは、GcCalendarGrid.CalendarView 設定に示されている詳細なコード例の一部を抜粋したものです。
private void UseListView()
{
    CalendarListView listView = new CalendarListView();
    listView.DayCount = 100;
    listView.DateAlignment = DateAlignment.Month;
    this.gcCalendarGrid1.CalendarView = listView;

    CalendarTemplate template = new CalendarTemplate(20, 1, 2, 1);

    template.ColumnHeader.CellStyle.Alignment = CalendarGridContentAlignment.MiddleCenter;
    template.ColumnHeader[0, 0].DateFormat = CalendarDateFormats.Month;
    template.ColumnHeader[0, 0].AutoMergeMode = AutoMergeMode.Horizontal;
    template.ColumnHeader[0, 0].AllowContentFloat = true;
    template.ColumnHeader[1, 0].DateFormat = CalendarDateFormats.Day;

    template.RowHeader.Columns[0].Width = 30;
    template.Content.Columns[0].Width = 30;

    this.gcCalendarGrid1.Template = template;
}
Private Sub UseListView()
    Dim listView As New CalendarListView()
    listView.DayCount = 100
    listView.DateAlignment = DateAlignment.Month
    Me.gcCalendarGrid1.CalendarView = listView

    Dim template As New CalendarTemplate(20, 1, 2, 1)

    template.ColumnHeader.CellStyle.Alignment = CalendarGridContentAlignment.MiddleCenter
    template.ColumnHeader(0, 0).DateFormat = CalendarDateFormats.Month
    template.ColumnHeader(0, 0).AutoMergeMode = AutoMergeMode.Horizontal
    template.ColumnHeader(0, 0).AllowContentFloat = True
    template.ColumnHeader(1, 0).DateFormat = CalendarDateFormats.Day

    template.RowHeader.Columns(0).Width = 30
    template.Content.Columns(0).Width = 30

    Me.gcCalendarGrid1.Template = template
End Sub
継承階層

System.Object
   GrapeCity.Win.CalendarGrid.CalendarView
      GrapeCity.Win.CalendarGrid.CalendarListView

参照

CalendarListView メンバ
GrapeCity.Win.CalendarGrid 名前空間

 

 


© 2014 GrapeCity inc. All rights reserved.