aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFile.cs
blob: 800513912685e00d91a34894641044d483cb07d4 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.CodeGeneration
{
    /// <summary>
    /// Represents enumeration code file.
    /// </summary>
    /// <seealso cref="Tango.CodeGeneration.CodeFile" />
    public class EnumerationFile : CodeFile
    {
        /// <summary>
        /// Gets or sets enum the name.
        /// </summary>
        public String Name { get; set; }

        /// <summary>
        /// Gets or sets the collection of enum fields.
        /// </summary>
        public List<EnumerationField> Fields { get; set; }

        /// <summary>
        /// Initializes a new instance of the <see cref="EnumerationFile"/> class.
        /// </summary>
        public EnumerationFile()
        {
            Fields = new List<EnumerationField>();
        }
    }
}
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 async void Save() { Machine.SupportedJobTypes = SelectedJobTypes.SynchedSource.ToList(); Machine.ShallowCopyTo(MachineProvider.Machine); await MachineProvider.SaveMachine(); await NavigationManager.NavigateBack(); } /// <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()); } } }