|
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
namespace System.Windows.Controls
{
/// <summary>
/// Specifies date formats for a DatePicker.
/// </summary>
public enum DatePickerFormat
{
/// <summary>
/// Specifies that the date should be displayed using unabbreviated days of the week and month names.
/// </summary>
Long = 0,
/// <summary>
/// Specifies that the date should be displayed using abbreviated days of the week and month names.
/// </summary>
Short = 1
}
}
|