2026-03-24 15:04:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2026-06-01 17:48:28 +08:00
|
|
|
|
using System.Collections.ObjectModel;
|
2026-03-24 15:04:02 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
|
2026-06-01 17:48:28 +08:00
|
|
|
|
namespace Aitex.Core.UI.Dialog
|
2026-03-24 15:04:02 +08:00
|
|
|
|
{
|
2026-06-01 17:48:28 +08:00
|
|
|
|
|
2026-03-24 15:04:02 +08:00
|
|
|
|
/// <summary>
|
2026-06-01 17:48:28 +08:00
|
|
|
|
/// Interaction logic for NotificationDialog.xaml
|
2026-03-24 15:04:02 +08:00
|
|
|
|
/// </summary>
|
2026-06-01 17:48:28 +08:00
|
|
|
|
public partial class TerminalDialog : Window
|
2026-03-24 15:04:02 +08:00
|
|
|
|
{
|
2026-06-01 17:48:28 +08:00
|
|
|
|
public TerminalDialog()
|
2026-03-24 15:04:02 +08:00
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
2026-06-01 17:48:28 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-03-24 15:04:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|