Initial commit

Added all files from https://sourceforge.net/p/winformscalenda/code/HEAD/tarball
This commit is contained in:
Derek Antrican
2019-04-23 12:29:22 -07:00
parent e7db788c44
commit 9f6dc416fd
56 changed files with 12079 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsFormsCalendar
{
/// <summary>
/// Represents the different kinds of selection in MonthView
/// </summary>
public enum MonthViewSelection
{
/// <summary>
/// User can select whatever date available to mouse reach
/// </summary>
Manual,
/// <summary>
/// Selection is limited to just one day
/// </summary>
Day,
/// <summary>
/// Selecion is limited to <see cref="DayOfWeek"/> weekly ranges
/// </summary>
WorkWeek,
/// <summary>
/// Selection is limited to a full week
/// </summary>
Week,
/// <summary>
/// Selection is limited to a full month
/// </summary>
Month
}
}