12345678910111213141516171819202122232425262728 |
- using Caliburn.Micro.Core;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using CyberX8_Core;
- namespace CyberX8_MainPages.ViewModels
- {
- public class WaferDialogViewModel : BindableBase
- {
- 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()
- {
- }
- }
- }
|