-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
ButtonGridPagingForm.cs
66 lines (53 loc) · 1.64 KB
/
ButtonGridPagingForm.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
using System.Collections.Generic;
using System.Globalization;
using System.Threading.Tasks;
using TelegramBotBase.Args;
using TelegramBotBase.Controls.Hybrid;
using TelegramBotBase.Enums;
using TelegramBotBase.Form;
namespace TelegramBotBase.Example.Tests.Controls;
public class ButtonGridPagingForm : AutoCleanForm
{
private ButtonGrid _mButtons;
public ButtonGridPagingForm()
{
DeleteMode = EDeleteMode.OnLeavingForm;
Init += ButtonGridForm_Init;
}
private Task ButtonGridForm_Init(object sender, InitEventArgs e)
{
_mButtons = new ButtonGrid
{
KeyboardType = EKeyboardType.ReplyKeyboard,
EnablePaging = true,
EnableSearch = true,
HeadLayoutButtonRow = new List<ButtonBase> { new("Back", "back") }
};
var countries = CultureInfo.GetCultures(CultureTypes.SpecificCultures);
var bf = new ButtonForm();
foreach (var c in countries)
{
bf.AddButtonRow(new ButtonBase(c.EnglishName, c.EnglishName));
}
_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
{
await Device.Send($"Button clicked with Text: {e.Button.Text} and Value {e.Button.Value}");
}
}
}