-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathButtonGridForm.cs
69 lines (55 loc) · 1.85 KB
/
ButtonGridForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System.Threading.Tasks;
using TelegramBotBase.Args;
using TelegramBotBase.Controls.Hybrid;
using TelegramBotBase.Enums;
using TelegramBotBase.Form;
namespace TelegramBotBase.Example.Tests.Controls;
public class ButtonGridForm : AutoCleanForm
{
private ButtonGrid _mButtons;
public ButtonGridForm()
{
DeleteMode = EDeleteMode.OnLeavingForm;
Init += ButtonGridForm_Init;
}
private Task ButtonGridForm_Init(object sender, InitEventArgs e)
{
_mButtons = new ButtonGrid
{
KeyboardType = EKeyboardType.InlineKeyBoard
};
var bf = new ButtonForm();
bf.AddButtonRow(new ButtonBase("Back", "back"), new ButtonBase("Switch Keyboard", "switch"));
bf.AddButtonRow(new ButtonBase("Button1", "b1"), new ButtonBase("Button2", "b2"));
bf.AddButtonRow(new ButtonBase("Button3", "b3"), new ButtonBase("Button4", "b4"));
_mButtons.DataSource.ButtonForm = bf;
_mButtons.ButtonClicked += Bg_ButtonClicked;
AddControl(_mButtons);
return Task.CompletedTask;
}
private async Task Bg_ButtonClicked(object sender, ButtonClickedEventArgs e)
{
if (e.Button == null)
{
return;
}
if (e.Button.Value == "back")
{
var start = new Menu();
await NavigateTo(start);
}
else if (e.Button.Value == "switch")
{
_mButtons.KeyboardType = _mButtons.KeyboardType switch
{
EKeyboardType.ReplyKeyboard => EKeyboardType.InlineKeyBoard,
EKeyboardType.InlineKeyBoard => EKeyboardType.ReplyKeyboard,
_ => _mButtons.KeyboardType
};
}
else
{
await Device.Send($"Button clicked with Text: {e.Button.Text} and Value {e.Button.Value}");
}
}
}