|
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 Iri.Modernisation.BaseMVVM.Commands; |
|
|
13 |
namespace Iri.Modernisation.Controls.View |
|
|
14 |
{ |
|
|
15 |
public partial class PolemicElementControl : MenuableUserControl |
|
|
16 |
{ |
|
|
17 |
public PolemicElementControl() |
|
|
18 |
: base() |
|
|
19 |
{ |
|
|
20 |
|
|
|
21 |
InitializeComponent(); |
|
|
22 |
MouseEnter += new MouseEventHandler(PolemicElementControl_MouseEnter); |
|
|
23 |
|
|
|
24 |
|
|
|
25 |
} |
|
|
26 |
|
|
|
27 |
void PolemicElementControl_MouseEnter(object sender, MouseEventArgs e) |
|
|
28 |
{ |
|
|
29 |
//throw new NotImplementedException(); |
|
|
30 |
} |
|
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
} |
|
|
37 |
|
|
|
38 |
} |