| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using Prism.Commands;
- using Prism.Events;
- using Prism.Ioc;
- using Prism.Mvvm;
- using Prism.Services.Dialogs;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Windows.Media.Media3D;
- using TeamAAS_VP.Models;
- namespace TeamAAS_VP.ViewModels.DebugMod
- {
- public class AddSimpleInchingViewModel : BindableBase
- {
- IContainerProvider _container;
- IEventAggregator _eventAggregator;
- #region 属性
- private UserInching _UserInching;
- public UserInching UserInching
- {
- get { return _UserInching; }
- set { SetProperty(ref _UserInching, value); }
- }
- #endregion
- #region 命令
- private DelegateCommand _ConfirmCommand;
- public DelegateCommand ConfirmCommand =>
- _ConfirmCommand ?? (_ConfirmCommand = new DelegateCommand(ExecuteConfirmCommand));
- private DelegateCommand _CancelCommand;
- public DelegateCommand CancelCommand =>
- _CancelCommand ?? (_CancelCommand = new DelegateCommand(ExecuteCancelCommand));
- #endregion
- #region 事件
- #endregion
- public AddSimpleInchingViewModel(IContainerProvider container, IEventAggregator ea)
- {
- _container = container;
- _eventAggregator = ea;
- }
- #region 方法
- void ExecuteConfirmCommand()
- {
-
- }
- void ExecuteCancelCommand()
- {
-
- }
- #endregion
- }
- }
|