mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 04:55:39 +02:00
17 lines
366 B
C#
17 lines
366 B
C#
using System.Windows;
|
|
|
|
namespace Ninjacrab.PersistentWindows.WpfShell
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
public PersistentWindowProcessor Processor { get; set; }
|
|
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|