|
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; |
|
17
|
12 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
0
|
13 |
namespace Iri.Modernisation.Controls.View |
|
|
14 |
{ |
|
|
15 |
public partial class ProductionView : UserControl |
|
|
16 |
{ |
|
|
17 |
public ProductionView() |
|
|
18 |
{ |
|
17
|
19 |
Commands.Initialize(); |
|
0
|
20 |
InitializeComponent(); |
|
27
|
21 |
//HeaderProductionElement.SelectedPart += Commands.ProductionTimeLine.EditorPartSelected.Execute; |
|
|
22 |
//HeaderProductionElement.FinishedPart += Commands.ProductionTimeLine.EditorPartFinished.Execute; |
|
19
|
23 |
|
|
17
|
24 |
//HeaderProductionElement.SelectedPart += new EventHandler<HeaderProductionEventArgs>(HeaderProductionElement_SelectedPart); |
|
|
25 |
} |
|
|
26 |
|
|
20
|
27 |
|
|
0
|
28 |
} |
|
|
29 |
} |