DateTimePicker.CalendarMonthBackground プロパティ
予定表の月の背景色を取得または設定します。
Public Property CalendarMonthBackground As Color
[C#]
public Color CalendarMonthBackground {get; set;}
[C++]
public: __property Color get_CalendarMonthBackground();public: __property void set_CalendarMonthBackground(Color);
[JScript]
public function get CalendarMonthBackground() : Color;public function set CalendarMonthBackground(Color);
プロパティ値
予定表の月の背景色を表す Color 。
例外
例外の種類 | 条件 |
---|---|
ArgumentException | 代入された値が null 参照 (Visual Basic では Nothing) です。 |
解説
DateTimePicker が作成されると、このプロパティは DefaultMonthBackColor フィールドの値と等しい値に初期設定されます。
使用例
[Visual Basic, C#, C++] CalendarMonthBackground プロパティを初期化する方法を次の例に示します。 DateTimePicker を作成して Form に追加した後に、この例では CalendarMonthBackground プロパティを初期化して Color 定数にしています。
Public Sub New()
Dim dateTimePicker1 As New DateTimePicker()
Controls.AddRange(New Control() {dateTimePicker1})
dateTimePicker1.CalendarMonthBackground = Color.Aqua
End Sub
[C#]
public MyClass()
{
DateTimePicker dateTimePicker1 = new DateTimePicker();
Controls.AddRange(new Control[] {dateTimePicker1});
dateTimePicker1.CalendarMonthBackground = Color.Aqua;
}
[C++]
public:
MyClass() {
DateTimePicker* dateTimePicker1 = new DateTimePicker();
Control* myClassControls[] = {dateTimePicker1};
Controls->AddRange(myClassControls);
dateTimePicker1->CalendarMonthBackground = Color::Aqua;
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DateTimePicker クラス | DateTimePicker メンバ | System.Windows.Forms 名前空間 | DefaultMonthBackColor