다음을 통해 공유


DateTimePicker.CalendarMonthBackground 속성

달력 월의 배경색을 가져오거나 설정합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Property CalendarMonthBackground As Color
‘사용 방법
Dim instance As DateTimePicker
Dim value As Color

value = instance.CalendarMonthBackground

instance.CalendarMonthBackground = value
public Color CalendarMonthBackground { get; set; }
public:
property Color CalendarMonthBackground {
    Color get ();
    void set (Color value);
}
/** @property */
public Color get_CalendarMonthBackground ()

/** @property */
public void set_CalendarMonthBackground (Color value)
public function get CalendarMonthBackground () : Color

public function set CalendarMonthBackground (value : Color)

속성 값

달력 월의 배경색을 나타내는 Color입니다.

예외

예외 형식 조건

ArgumentException

할당된 값이 Null 참조(Visual Basic의 경우 Nothing)인 경우

설명

DateTimePicker를 만들 때 이 속성의 초기 값은 DefaultMonthBackColor 필드 값과 동일하게 설정됩니다.

예제

다음 코드 예제에서는 CalendarMonthBackground 속성을 초기화하는 방법을 보여 줍니다. 이 예제에서는 DateTimePicker를 만들어 Form에 추가한 다음 Color 상수에 대해 CalendarMonthBackground 속성을 초기화합니다.

Public Sub New()
   Dim dateTimePicker1 As New DateTimePicker()
   Controls.AddRange(New Control() {dateTimePicker1})
   dateTimePicker1.CalendarMonthBackground = Color.Aqua
End Sub 
public MyClass()
{
   DateTimePicker dateTimePicker1 = new DateTimePicker();
   Controls.AddRange(new Control[] {dateTimePicker1}); 
   dateTimePicker1.CalendarMonthBackground = Color.Aqua;
}
public:
   MyClass()
   {
      DateTimePicker^ dateTimePicker1 = gcnew DateTimePicker;
      array<Control^>^ myClassControls = {dateTimePicker1};
      Controls->AddRange( myClassControls );
      dateTimePicker1->CalendarMonthBackground = Color::Aqua;
   }
public MyClass()
{
    DateTimePicker dateTimePicker1 = new DateTimePicker();
    get_Controls().AddRange(new Control[] { dateTimePicker1 });
    dateTimePicker1.set_CalendarMonthBackground(Color.get_Aqua());
} //MyClass

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

DateTimePicker 클래스
DateTimePicker 멤버
System.Windows.Forms 네임스페이스
DefaultMonthBackColor