|
16
|
1 |
using System; |
|
|
2 |
using System.Net; |
|
|
3 |
using System.Windows; |
|
|
4 |
using System.Windows.Controls; |
|
|
5 |
using System.Windows.Documents; |
|
|
6 |
using System.Windows.Ink; |
|
|
7 |
using System.Windows.Input; |
|
|
8 |
using System.Windows.Media; |
|
|
9 |
using System.Windows.Media.Animation; |
|
|
10 |
using System.Windows.Shapes; |
|
|
11 |
using Iri.Modernisation.BaseMVVM.Commands; |
|
|
12 |
using Iri.Modernisation.BaseMVVM.ViewModel; |
|
18
|
13 |
using Iri.Modernisation.Controls.View; |
|
16
|
14 |
namespace Iri.Modernisation.Controls.ViewModel |
|
|
15 |
{ |
|
|
16 |
public class ProductionViewVM : BaseMVVM.ViewModel.ViewModel |
|
|
17 |
{ |
|
|
18 |
private HeaderProductionVM _headerProductionVM; |
|
|
19 |
public HeaderProductionVM ViewModelHeaderProduction |
|
|
20 |
{ |
|
|
21 |
get |
|
|
22 |
{ |
|
|
23 |
return _headerProductionVM; |
|
|
24 |
} |
|
|
25 |
set |
|
|
26 |
{ |
|
|
27 |
_headerProductionVM = value; |
|
|
28 |
OnPropertyChanged("ViewModelHeaderProduction"); |
|
|
29 |
} |
|
|
30 |
} |
|
|
31 |
private ProductionTimeLineVM _productionTimeLineVM; |
|
|
32 |
public ProductionTimeLineVM ViewModelProductionTimeLine |
|
|
33 |
{ |
|
|
34 |
get |
|
|
35 |
{ |
|
|
36 |
return _productionTimeLineVM; |
|
|
37 |
} |
|
|
38 |
set |
|
|
39 |
{ |
|
|
40 |
_productionTimeLineVM = value; |
|
|
41 |
OnPropertyChanged("ViewModelProductionTimeLine"); |
|
|
42 |
} |
|
|
43 |
} |
|
18
|
44 |
//SelectedChapter |
|
16
|
45 |
public ProductionViewVM() |
|
|
46 |
{ |
|
|
47 |
ViewModelHeaderProduction = new HeaderProductionVM(); |
|
|
48 |
ViewModelProductionTimeLine = new ProductionTimeLineVM(); |
|
18
|
49 |
|
|
16
|
50 |
} |
|
18
|
51 |
|
|
|
52 |
|
|
16
|
53 |
} |
|
|
54 |
} |