forked from ygoe/MultiSelectTreeView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditTextBox.cs
More file actions
64 lines (52 loc) · 1.25 KB
/
Copy pathEditTextBox.cs
File metadata and controls
64 lines (52 loc) · 1.25 KB
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
using System.Windows.Data;
using System.Windows.Input;
namespace System.Windows.Controls
{
/// <summary>
/// Text box which focuses itself on load and selects all text in it.
/// </summary>
public class EditTextBox : TextBox
{
#region Private fields
private string startText;
#endregion Private fields
#region Constructor
static EditTextBox()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(EditTextBox), new FrameworkPropertyMetadata(typeof(EditTextBox)));
}
public EditTextBox()
{
Loaded += OnTreeViewEditTextBoxLoaded;
}
#endregion Constructor
#region Methods
protected override void OnGotKeyboardFocus(KeyboardFocusChangedEventArgs e)
{
base.OnGotKeyboardFocus(e);
startText = Text;
SelectAll();
}
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (!e.Handled)
{
Key key = e.Key;
switch (key)
{
case Key.Escape:
Text = startText;
break;
}
}
}
private void OnTreeViewEditTextBoxLoaded(object sender, RoutedEventArgs e)
{
BindingExpression be = GetBindingExpression(TextProperty);
if (be != null) be.UpdateTarget();
FocusHelper.Focus(this);
}
#endregion
}
}