using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGIS.Core.Data; using ArcGIS.Core.Data.UtilityNetwork.Trace; using ArcGIS.Core.Geometry; using ArcGIS.Desktop.Catalog; using ArcGIS.Desktop.Core; using ArcGIS.Desktop.Editing; using ArcGIS.Desktop.Extensions; using ArcGIS.Desktop.Framework; using ArcGIS.Desktop.Framework.Contracts; using ArcGIS.Desktop.Framework.Dialogs; using ArcGIS.Desktop.Framework.Threading.Tasks; using ArcGIS.Desktop.Mapping; namespace OliviaAddInPro { internal class PaneLimpiezaSub1ViewModel : PanelViewModelBase { public PaneLimpiezaSub1ViewModel () { lblCapaLimp = Resource1.String_selec_capa; timeTto = 10; textVeloDespl = 10; lblUdsTimeTto = "min"; lblUdsVeloDespl = "km/h"; } #region Properties public override string DisplayName { get { return Resource1.String_tto; } } private string lblCapaLimp; public string LblCapaLimp { get { return lblCapaLimp; } set { base.SetProperty(ref lblCapaLimp, value, () => LblCapaLimp); } } private int textVeloDespl; public int TextVeloDespl { get { return textVeloDespl; } set { base.SetProperty(ref textVeloDespl, value, () => TextVeloDespl); } } private string lblUdsVeloDespl; public string LblUdsVeloDespl { get { return lblUdsVeloDespl; } set { base.SetProperty(ref lblUdsVeloDespl, value, () => LblUdsVeloDespl); } } private int timeTto; public int TimeTto { get { return timeTto; } set { base.SetProperty(ref timeTto, value, () => TimeTto); } } private string lblUdsTimeTto; public string LblUdsTimeTto { get { return lblUdsTimeTto; } set { base.SetProperty(ref lblUdsTimeTto, value, () => LblUdsTimeTto); } } #endregion Properties } }