12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.ObjectModel;
- using System.Windows;
- using System.Windows.Controls;
- using MECF.Framework.Common.CommonData;
- using OpenSEMI.ClientBase;
- using VirgoUI.Client;
- namespace VirgoUI.Dialog
- {
- public class TerminalDialogViewModel : DialogViewModel<string>
- {
- public bool IsDisplayed { get; set; }
- public ObservableCollection<TerminalItem> _terminalLogList { get; set; }
- public TerminalDialogViewModel()
- {
-
- }
-
- public void OK()
- {
- IsCancel = false;
- IsDisplayed = false;
- TryClose(true);
- }
- }
- }
|