WaferDialogViewModel.cs 689 B

12345678910111213141516171819202122232425262728
  1. using Caliburn.Micro.Core;
  2. using Prism.Mvvm;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using CyberX8_Core;
  9. namespace CyberX8_MainPages.ViewModels
  10. {
  11. public class WaferDialogViewModel : BindableBase
  12. {
  13. public string _ConfirmText;
  14. public string ConfirmText
  15. {
  16. get { return _ConfirmText; }
  17. set { SetProperty(ref _ConfirmText, value); }
  18. }
  19. //public string Title { get { return m_title; } set { m_title = value;NotifyOfPropertyChange(()=> m_title); } }
  20. public WaferDialogViewModel()
  21. {
  22. }
  23. }
  24. }