Chaning namespace for controls depending on their use area to: Controls.Hybrid Controls.Inline Controls.Reply Updating example project as well.
27 lines
489 B
C#
27 lines
489 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.Inline
|
|
{
|
|
public class MonthPicker : CalendarPicker
|
|
{
|
|
|
|
|
|
|
|
public MonthPicker()
|
|
{
|
|
this.PickerMode = eMonthPickerMode.month;
|
|
this.EnableDayView = false;
|
|
}
|
|
|
|
|
|
}
|
|
}
|