|
0
|
1 |
using System; |
|
|
2 |
using System.Windows; |
|
|
3 |
using System.Windows.Controls; |
|
|
4 |
using System.Windows.Documents; |
|
|
5 |
using System.Windows.Ink; |
|
|
6 |
using System.Windows.Input; |
|
|
7 |
using System.Windows.Media; |
|
|
8 |
using System.Windows.Media.Animation; |
|
|
9 |
using System.Windows.Shapes; |
|
|
10 |
using Iri.Modernisation.Data.Models; |
|
38
|
11 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
0
|
12 |
namespace Iri.Modernisation.Controls.View |
|
|
13 |
{ |
|
|
14 |
public partial class AnnotationMaker : UserControl |
|
|
15 |
{ |
|
|
16 |
public AnnotationMaker() |
|
|
17 |
{ |
|
36
|
18 |
|
|
0
|
19 |
InitializeComponent(); |
|
38
|
20 |
Commands.HttpSenderResponse.Executed += new EventHandler<SLExtensions.Input.ExecutedEventArgs>(HttpSenderResponse_Executed); |
|
0
|
21 |
|
|
30
|
22 |
|
|
0
|
23 |
} |
|
38
|
24 |
|
|
|
25 |
void HttpSenderResponse_Executed(object sender, SLExtensions.Input.ExecutedEventArgs e) |
|
|
26 |
{ |
|
|
27 |
this.Dispatcher.BeginInvoke(() => MessageBox.Show((String)e.Parameter)); |
|
|
28 |
} |
|
0
|
29 |
} |
|
|
30 |
} |