|
0
|
1 |
using System; |
|
|
2 |
using System.Collections.Generic; |
|
|
3 |
using System.Linq; |
|
|
4 |
using System.Net; |
|
|
5 |
using System.Windows; |
|
|
6 |
using System.Windows.Controls; |
|
|
7 |
using System.Windows.Documents; |
|
|
8 |
using System.Windows.Input; |
|
|
9 |
using System.Windows.Media; |
|
|
10 |
using System.Windows.Media.Animation; |
|
|
11 |
using System.Windows.Shapes; |
|
|
12 |
using System.Windows.Data; |
|
|
13 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
|
14 |
namespace Iri.Modernisation.Controls.View |
|
|
15 |
{ |
|
|
16 |
public partial class PersonnalChutier : UserControl |
|
|
17 |
{ |
|
|
18 |
public PersonnalChutier() |
|
|
19 |
{ |
|
|
20 |
InitializeComponent(); |
|
|
21 |
} |
|
|
22 |
|
|
|
23 |
private void SearchAnnotedBox_KeyUp(object sender, KeyEventArgs e) |
|
|
24 |
{ |
|
|
25 |
BindingExpression be = SearchAnnotedBox.GetBindingExpression(TextBox.TextProperty); |
|
|
26 |
be.UpdateSource(); |
|
|
27 |
Commands.PersonnalChutier.Search.Execute(); |
|
|
28 |
} |
|
|
29 |
} |
|
|
30 |
} |