blob: cbf19ca7cd505ab1d55f90b2b0c5511020cc472d (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
using System.Windows.Input;
namespace Tango.FSE.Diagnostics.Controls
{
public class WidgetsListBox : ListBox
{
protected override void OnKeyDown(KeyEventArgs e)
{
if (e.Key == Key.Up || e.Key == Key.Down || e.Key == Key.Left || e.Key == Key.Right)
{
e.Handled = false;
return;
}
base.OnKeyDown(e);
}
}
}
|