1234567891011121314151617181920212223242526272829 |
- using Caliburn.Micro.Core;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Venus_Core;
- namespace Venus_MainPages.ViewModels
- {
- public class WaferDialogViewModel : BindableBase
- {
- //private string m_title;
- public string _ConfirmText;
- public string ConfirmText
- {
- get { return _ConfirmText; }
- set { SetProperty(ref _ConfirmText, value); }
- }
- //public string Title { get { return m_title; } set { m_title = value;NotifyOfPropertyChange(()=> m_title); } }
- public WaferDialogViewModel()
- {
- }
- }
- }
|