WaferDialogViewModel.cs 692 B

1234567891011121314151617181920212223242526272829
  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 Venus_Core;
  9. namespace Venus_MainPages.ViewModels
  10. {
  11. public class WaferDialogViewModel : BindableBase
  12. {
  13. //private string m_title;
  14. public string _ConfirmText;
  15. public string ConfirmText
  16. {
  17. get { return _ConfirmText; }
  18. set { SetProperty(ref _ConfirmText, value); }
  19. }
  20. //public string Title { get { return m_title; } set { m_title = value;NotifyOfPropertyChange(()=> m_title); } }
  21. public WaferDialogViewModel()
  22. {
  23. }
  24. }
  25. }