PowerTools MultiRow for Windows Forms 8.0J
Format プロパティ (DateTimePickerCell)
使用例 

DateTimePickerCellに表示される日付と時刻の書式を取得または設定します。
構文
Public Property Format As DateTimePickerFormat
public DateTimePickerFormat Format {get; set;}

プロパティ値

System.Windows.Forms.DateTimePickerFormat値の1つ。既定値はSystem.Windows.Forms.DateTimePickerFormat.Longです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Windows.Forms.DateTimePickerFormat値の1つではありません。
解説
このプロパティは、日付を表示する日付/時刻書式を決定します。日付/時刻書式は、オペレーティングシステムで指定された地域設定に基づきます。
注意:
CustomFormatプロパティを使用して日付と時刻にカスタムの表示書式を適用するためには、FormatSystem.Windows.Forms.DateTimePickerFormat.Customに設定する必要があります。
DateTimePickerCellに時刻のみを表示するには、FormatをSystem.Windows.Forms.DateTimePickerFormat.Timeに設定し、ShowUpDownプロパティをtrueに設定します。
使用例
次のサンプルコードは、日時ピッカー型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、DateTimePickerCellクラスに示されている詳細なコード例の一部を抜粋したものです。
DateTimePickerCell CreateCustomCalendarStyleAndFormat()
{
    DateTimePickerCell dateTimePickerCell1 = new DateTimePickerCell();

    dateTimePickerCell1.Value = DateTime.Now;

    dateTimePickerCell1.Size = new Size(120, 21);

    dateTimePickerCell1.CustomFormat = "yyyy/MM";

    dateTimePickerCell1.Format = DateTimePickerFormat.Custom;

    dateTimePickerCell1.CalendarFont = new Font(Control.DefaultFont, FontStyle.Bold);

    dateTimePickerCell1.CalendarForeColor = Color.Red;

    dateTimePickerCell1.CalendarMonthBackground = Color.Blue;

    dateTimePickerCell1.CalendarTitleBackColor = Color.Black;

    dateTimePickerCell1.CalendarTitleForeColor = Color.White;

    dateTimePickerCell1.CalendarTrailingForeColor = Color.Yellow;

    dateTimePickerCell1.DropDownAlign = LeftRightAlignment.Right;

    return dateTimePickerCell1;
}
Private Function CreateCustomCalendarStyleAndFormat() As DateTimePickerCell
    Dim dateTimePickerCell1 As New DateTimePickerCell()

    dateTimePickerCell1.Value = DateTime.Now

    dateTimePickerCell1.Size = New Size(120, 21)

    dateTimePickerCell1.CustomFormat = "yyyy/MM"

    dateTimePickerCell1.Format = DateTimePickerFormat.Custom

    dateTimePickerCell1.CalendarFont = New Font(Control.DefaultFont, FontStyle.Bold)

    dateTimePickerCell1.CalendarForeColor = Color.Red

    dateTimePickerCell1.CalendarMonthBackground = Color.Blue

    dateTimePickerCell1.CalendarTitleBackColor = Color.Black

    dateTimePickerCell1.CalendarTitleForeColor = Color.White

    dateTimePickerCell1.CalendarTrailingForeColor = Color.Yellow

    dateTimePickerCell1.DropDownAlign = LeftRightAlignment.Right

    Return dateTimePickerCell1
End Function
参照

DateTimePickerCell クラス
DateTimePickerCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.