WaferDialogViewModel.cs 457 B

12345678910111213141516171819202122
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Venus_MainPages.ViewModels
  8. {
  9. internal class WaferDialogViewModel : BindableBase
  10. {
  11. private string m_title;
  12. public string Title { get { return m_title; } set { SetProperty(ref m_title,value); } }
  13. WaferDialogViewModel()
  14. {
  15. Title = "你好";
  16. }
  17. }
  18. }