-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dialog.cs
75 lines (66 loc) · 2.51 KB
/
Dialog.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
70
71
72
73
74
75
using System;
using Thuja.Widgets;
namespace Thuja
{
/// <summary>
/// Всплывающий диалог с вопросом к пользователю.
/// </summary>
/// <typeparam name="T">Тип выбираемого значения.</typeparam>
public class Dialog<T>
{
/// <summary>
/// Вспомогательное всплывающее окно.
/// </summary>
private readonly Popup popup = new();
/// <summary>
/// Вопрос к пользователю.
/// </summary>
public string? Question { get; set; }
/// <summary>
/// Возможные варианты ответа.
/// </summary>
public (string text, T obj)[] Answers { get; set; } = new (string, T)[0];
/// <summary>
/// Вызывается, если пользователь выбирает тот или иной вариант.
/// Передается соответствующее значение из <see cref="Answers" />.
/// </summary>
public Action<T>? OnAnswered { get; set; }
/// <summary>
/// Вызывается, когда пользователь отменяет действие.
/// </summary>
public Action? OnCancelled { get; set; }
/// <summary>
/// Отображает диалог в переданном контейнере.
/// </summary>
/// <param name="root">Контейнер, который был выбран для отображения диалога.</param>
public void Show(BaseContainer root)
{
if (Question != null)
{
popup.Add(new MultilineLabel(Question))
.Add(new Label(""));
}
foreach (var (text, obj) in Answers)
{
popup.Add(new Button(text)
.AsIKeyHandler()
.Add(KeySelector.SelectItem, () =>
{
popup.Close();
OnAnswered?.Invoke(obj);
})
);
}
popup.Add(new Label("")).Add(
new Button("Отмена")
.AsIKeyHandler()
.Add(KeySelector.SelectItem, () =>
{
popup.Close();
OnCancelled?.Invoke();
})
);
popup.Show(root);
}
}
}