|
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; |
|
17
|
10 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
|
11 |
using Iri.Modernisation.Controls.ViewModel; |
|
|
12 |
using Iri.Modernisation.Data.Models; |
|
24
|
13 |
using System.Globalization; |
|
0
|
14 |
namespace Iri.Modernisation.Controls.View |
|
|
15 |
{ |
|
|
16 |
public partial class HeaderProduction : UserControl |
|
|
17 |
{ |
|
|
18 |
public HeaderProduction() |
|
|
19 |
{ |
|
|
20 |
// Required to initialize variables |
|
24
|
21 |
|
|
0
|
22 |
InitializeComponent(); |
|
19
|
23 |
|
|
17
|
24 |
} |
|
|
25 |
|
|
36
|
26 |
|
|
0
|
27 |
} |
|
17
|
28 |
public class HeaderProductionEventArgs : EventArgs |
|
|
29 |
{ |
|
36
|
30 |
|
|
17
|
31 |
public bool IsIndexPart; |
|
18
|
32 |
public HeaderProductionEventArgs() |
|
|
33 |
{ |
|
|
34 |
} |
|
36
|
35 |
public HeaderProductionEventArgs(bool isIndexpPrt) |
|
17
|
36 |
{ |
|
36
|
37 |
|
|
17
|
38 |
IsIndexPart = isIndexpPrt; |
|
|
39 |
} |
|
|
40 |
|
|
|
41 |
} |
|
0
|
42 |
} |