| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TeamAAS_VP.Core;
- using TeamAAS_VP;
- using static Org.BouncyCastle.Math.EC.ECCurve;
- namespace TeamAAS_VP.Models
- {
- public class CurentApplicationSettings : BindableBase
- {
- public CurentApplicationSettings()
- {
- }
- private string _CompanyTitle= "江苏新惕姆智能装备有限公司";
- /// <summary>
- /// 公司名称标题
- /// </summary>
- public string CompanyTitle
- {
- get { return _CompanyTitle; }
- set { SetProperty(ref _CompanyTitle, value); }
- }
- private string _Title = "Team Vision";
- public string Title
- {
- get { return _Title; }
- set { SetProperty(ref _Title,value); }
- }
- private DateTime _DT = DateTime.Now;
- public DateTime DT
- {
- get { return _DT; }
- set { SetProperty(ref _DT, value); }
- }
- private Dictionary<Guid, double> _RobotJogSetpDistance = new Dictionary<Guid, double>();
- public Dictionary<Guid, double> RobotJogSetpDistance
- {
- get { return _RobotJogSetpDistance; }
- set { SetProperty(ref _RobotJogSetpDistance, value); }
- }
- }
- }
|