- New control: MonthPicker - New control TreeView - adding examples for all 3 - small change on Progress Bar Control - due latest changes on the base it is now easier to create controls which will be rendered (or not)in several forms depending on user context
27 lines
482 B
C#
27 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TelegramBotBase.Base;
|
|
using TelegramBotBase.Enums;
|
|
using TelegramBotBase.Form;
|
|
|
|
namespace TelegramBotBase.Controls
|
|
{
|
|
public class MonthPicker : CalendarPicker
|
|
{
|
|
|
|
|
|
|
|
public MonthPicker()
|
|
{
|
|
this.PickerMode = eMonthPickerMode.month;
|
|
this.EnableDayView = false;
|
|
}
|
|
|
|
|
|
}
|
|
}
|