WIn_RustTools/RustTools/Themes/NullPage.xaml.cs

12 lines
232 B
C#
Raw Permalink Normal View History

2024-08-13 13:59:14 +00:00
using Microsoft.UI.Xaml.Controls;
namespace RustTools.Themes;
public sealed partial class NullPage : UserControl
{
public NullPage()
{
2024-08-15 01:40:33 +00:00
this.InitializeComponent();
2024-08-13 13:59:14 +00:00
DefaultStyleKey = typeof(NullPage);
}
}