2a8bbf76bf
Also put settings into proper dir
15 lines
246 B
C#
15 lines
246 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace MayShow.Views;
|
|
|
|
public partial class ShutdownCheckView : UserControl
|
|
{
|
|
public ShutdownCheckView()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
}
|