26 lines
490 B
C#
26 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bitsplash.DatePicker
|
|
{
|
|
public enum WeekDaysLayout
|
|
{
|
|
/// <summary>
|
|
/// do not show week day names
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// show short week day names
|
|
/// </summary>
|
|
Short,
|
|
/// <summary>
|
|
/// show full week day names
|
|
/// </summary>
|
|
Full
|
|
}
|
|
|
|
}
|