blob: b871920591f43edb03a56678ef457716ff74b102 (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Tango.Core.DI;
using Tango.FSE.Common.Notifications;
namespace Tango.FSE.UI.Controls
{
/// <summary>
/// Interaction logic for NotificationsControl.xaml
/// </summary>
public partial class NotificationsControl : UserControl
{
private UIElement _previousFocusedElement;
[TangoInject]
private INotificationProvider _notificationProvider;
public NotificationsControl()
{
InitializeComponent();
Loaded += NotificationsControl_Loaded;
}
private void NotificationsControl_Loaded(object sender, RoutedEventArgs e)
{
TangoIOC.Default.Inject(this);
}
private async void GridMessageBox_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (gridMessageBox.IsVisible)
{
_previousFocusedElement = Keyboard.FocusedElement as UIElement;
await Task.Delay(100);
btnOK.Focus();
}
else
{
_previousFocusedElement?.Focus();
}
}
private async void GridDialog_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (btnDialogOK.IsDefault)
{
if (gridDialog.IsVisible)
{
_previousFocusedElement = Keyboard.FocusedElement as UIElement;
await Task.Delay(100);
btnDialogOK.Focus();
}
else
{
_previousFocusedElement?.Focus();
}
}
}
private async void GridInputBox_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (gridInputBox.IsVisible)
{
_previousFocusedElement = Keyboard.FocusedElement as UIElement;
await Task.Delay(100);
txtInput.Focus();
Keyboard.Focus(txtInput);
txtInput.SelectAll();
btnInputOK.IsDefault = true;
}
else
{
_previousFocusedElement?.Focus();
}
}
private void TxtInput_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
if (btnInputOK.Command != null)
{
if (btnInputOK.Command.CanExecute(null))
{
btnInputOK.Command.Execute(null);
}
}
e.Handled = true;
}
else if (e.Key == Key.Escape)
{
if (btnInputCancel.Command != null)
{
if (btnInputCancel.Command.CanExecute(null))
{
btnInputCancel.Command.Execute(null);
}
}
e.Handled = true;
}
}
private void SnackbarItems_ScrollViewer_MouseEnter(object sender, MouseEventArgs e)
{
_notificationProvider.HoldSnackbarItemsTimeout = true;
}
private void SnackbarItems_ScrollViewer_MouseLeave(object sender, MouseEventArgs e)
{
_notificationProvider.HoldSnackbarItemsTimeout = false;
}
}
}
|