12345678910111213141516171819202122232425262728293031323334 |
- 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 TemperatureDetailAllZoneViewModel: FurnaceUIViewModelBase
- {
- private string _tempSetValue;
- public string TempSetValue
- {
- get => _tempSetValue; set
- {
- _tempSetValue = value;
- NotifyOfPropertyChange("TempSetValue");
- }
- }
- public void SaveCmd()
- {
- ((Window)GetView()).DialogResult = true;
- }
- public void CloseCmd()
- {
- ((Window)GetView()).DialogResult = false;
- }
- }
- }
|