123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using OpenSEMI.ClientBase;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using FurnaceUI.Models;
- namespace FurnaceUI.Views.Operations
- {
- public class WaferChargeViewModel : FurnaceUIViewModelBase
- {
- public bool IsEnabledAction { get; set; }
-
- public WaferChargeViewModel()
- {
-
- }
- public void ClickCmd(string cmd)
- {
- switch (cmd)
- {
- case "OK":
- ((Window)GetView()).DialogResult = true;
- break;
- case "Cancel":
- ((Window)GetView()).DialogResult = false;
- break;
- default:
- break;
- }
- }
-
- }
- }
|