12345678910111213141516171819202122 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_MainPages.ViewModels
- {
- internal class WaferDialogViewModel : BindableBase
- {
- private string m_title;
- public string Title { get { return m_title; } set { SetProperty(ref m_title,value); } }
- WaferDialogViewModel()
- {
- Title = "你好";
- }
- }
- }
|