blob: 310a09846b5ebcffd0e2155de6fe6db07f3594d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
using Tango.BL;
using Tango.BL.Entities;
using Tango.BL.Enumerations;
using Tango.Core.Commands;
using Tango.Core.DI;
using Tango.PPC.Common;
using Tango.PPC.Common.Connection;
using Tango.PPC.Common.ExternalBridge;
using Tango.PPC.Common.Messages;
using Tango.SharedUI.Components;
using Tango.WiFi;
namespace Tango.PPC.MachineSettings.ViewModels
{
/// <summary>
/// Represents the main view VM and entry point for <see cref="Synchronization.MyModule"/>.
/// </summary>
/// <seealso cref="Tango.PPC.Common.PPCViewModel" />
public class MainViewVM : PPCViewModel
{
#region Properties
private Machine _machine;
public Machine Machine
{
get { return _machine; }
set { _machine = value; RaisePropertyChangedAuto(); }
}
private SelectedObjectCollection<JobTypes> _selectedJobTypes;
public SelectedObjectCollection<JobTypes> SelectedJobTypes
{
get { return _selectedJobTypes; }
set { _selectedJobTypes = value; RaisePropertyChangedAuto(); }
}
#endregion
#region Commands
/// <summary>
/// Gets or sets the save command.
/// </summary>
public RelayCommand SaveCommand { get; set; }
/// <summary>
/// Gets or sets the discard command.
/// </summary>
public RelayCommand DiscardCommand { get; set; }
#endregion
public MainViewVM()
{
SaveCommand = new RelayCommand(Save);
DiscardCommand = new RelayCommand(Discard);
}
private void Discard()
{
NavigationManager.NavigateBack();
}
private void Save()
{
Machine.SupportedJobTypes = SelectedJobTypes.SynchedSource.ToList();
Machine.ShallowCopyTo(MachineProvider.Machine);
MachineProvider.Machine.SaveAsync(ObservablesEntitiesAdapter.Instance.Context);
NavigationManager.NavigateBack();
RaiseMessage(new MachineSettingsSavedMessage() { Machine = MachineProvider.Machine });
}
/// <summary>
/// Called when the application has been started
/// </summary>
public override void OnApplicationStarted()
{
}
public override void OnNavigatedTo()
{
base.OnNavigatedTo();
Machine = new Machine();
MachineProvider.Machine.ShallowCopyTo(Machine);
RaisePropertyChanged(nameof(Machine));
SelectedJobTypes = new SelectedObjectCollection<JobTypes>(Enum.GetValues(typeof(JobTypes)).Cast<JobTypes>().ToObservableCollection(), Machine.SupportedJobTypes.ToObservableCollection());
}
}
}
|