WaferDialogViewModel.cs 478 B

1234567891011121314151617181920212223
  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. namespace Venus_MainPages.ViewModels
  9. {
  10. internal class WaferDialogViewModel : Screen
  11. {
  12. private string m_title;
  13. public string Title { get { return m_title; } set { m_title = value;NotifyOfPropertyChange(()=> m_title); } }
  14. public WaferDialogViewModel()
  15. {
  16. }
  17. }
  18. }