| File: System\Windows\Controls\DatePickerFormat.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. 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 } }