| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TeamAAS_VP.Enums;
- namespace TeamAAS_VP.Models.Robot
- {
- /// <summary>
- /// 托盘扩展
- /// </summary>
- public class PalletExtend: BindableBase
- {
- private CoordinateModel _CoordinateModel;
- /// <summary>
- /// 坐标模式
- /// </summary>
- public CoordinateModel CoordinateModel
- {
- get { return _CoordinateModel; }
- set { SetProperty(ref _CoordinateModel, value); }
- }
- private double _Pallet_X_Interval;
- /// <summary>
- /// 子托盘之间X方向间隔距离
- /// </summary>
- public double Pallet_X_Interval
- {
- get { return _Pallet_X_Interval; }
- set { SetProperty(ref _Pallet_X_Interval, value); }
- }
- private double _Pallet_Y_Interval;
- /// <summary>
- /// 子托盘之间Y方向间隔距离
- /// </summary>
- public double Pallet_Y_Interval
- {
- get { return _Pallet_Y_Interval; }
- set { SetProperty(ref _Pallet_Y_Interval, value); }
- }
- private int _Pallet_Row;
- /// <summary>
- /// 子托盘X方向排列的个数
- /// </summary>
- public int Pallet_Row
- {
- get { return _Pallet_Row; }
- set { SetProperty(ref _Pallet_Row, value); }
- }
- private int _Pallet_Column;
- /// <summary>
- /// 子托盘Y方向排列的个数
- /// </summary>
- public int Pallet_Column
- {
- get { return _Pallet_Column; }
- set { SetProperty(ref _Pallet_Column, value); }
- }
- }
- }
|