Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Model
- {
- public class MixWinkModel:ObservableObject
- {
- private string _materialName;
- public string materialName { get { return _materialName; } set { _materialName = value;OnPropertyChanged(); } }
- /// <summary>
- /// 位置
- /// </summary>
- private int _loc;
- public int Loc { get { return _loc; } set { _loc = value;OnPropertyChanged(); } }
- /// <summary>
- /// 停留时间
- /// </summary>
- public int Time { get { return _time; } set { _time = value;OnPropertyChanged(); } }
- private int _time;
- }
- }
|