DateTimePicker.CalendarFont 속성
달력에 적용된 글꼴 스타일을 가져오거나 설정합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
<LocalizableAttribute(True)> _
Public Property CalendarFont As Font
‘사용 방법
Dim instance As DateTimePicker
Dim value As Font
value = instance.CalendarFont
instance.CalendarFont = value
[LocalizableAttribute(true)]
public Font CalendarFont { get; set; }
[LocalizableAttribute(true)]
public:
property Font^ CalendarFont {
Font^ get ();
void set (Font^ value);
}
/** @property */
public Font get_CalendarFont ()
/** @property */
public void set_CalendarFont (Font value)
public function get CalendarFont () : Font
public function set CalendarFont (value : Font)
속성 값
달력에 적용된 글꼴 스타일을 나타내는 Font입니다.
예제
다음 코드 예제에서는 CalendarFont 속성을 초기화하는 방법을 보여 줍니다. 이 예제에서는 새로운 DateTimePicker 컨트롤을 만들어 Form의 Controls 컬렉션에 추가한 다음 동적으로 정의된 Font에 대해 CalendarFont 속성을 초기화합니다.
Public Sub New()
' Create a new DateTimePicker.
Dim dateTimePicker1 As New DateTimePicker()
Controls.AddRange(New Control() {dateTimePicker1})
dateTimePicker1.CalendarFont = New Font("Courier New", 8.25F, FontStyle.Italic, GraphicsUnit.Point, CType(0, [Byte]))
End Sub
public MyClass()
{
// Create a new DateTimePicker.
DateTimePicker dateTimePicker1 = new DateTimePicker();
Controls.AddRange(new Control[] {dateTimePicker1});
dateTimePicker1.CalendarFont = new Font("Courier New", 8.25F, FontStyle.Italic, GraphicsUnit.Point, ((Byte)(0)));
}
public:
MyClass()
{
// Create a new DateTimePicker.
DateTimePicker^ dateTimePicker1 = gcnew DateTimePicker;
array<Control^>^ myClassControls = {dateTimePicker1};
Controls->AddRange( myClassControls );
dateTimePicker1->CalendarFont = gcnew System::Drawing::Font(
"Courier New", 8.25F, FontStyle::Italic, GraphicsUnit::Point, ((Byte)(0)) );
}
public MyClass()
{
// Create a new DateTimePicker.
DateTimePicker dateTimePicker1 = new DateTimePicker();
get_Controls().AddRange(new Control[] { dateTimePicker1 });
dateTimePicker1.set_CalendarFont(new Font("Courier New",
8.25f, FontStyle.Italic, GraphicsUnit.Point, (ubyte)0));
} //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에서 지원
.NET Compact Framework
2.0에서 지원
참고 항목
참조
DateTimePicker 클래스
DateTimePicker 멤버
System.Windows.Forms 네임스페이스