12 lines
232 B
C#
12 lines
232 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace RustTools.Themes;
|
|
public sealed partial class NullPage : UserControl
|
|
{
|
|
public NullPage()
|
|
{
|
|
this.InitializeComponent();
|
|
DefaultStyleKey = typeof(NullPage);
|
|
}
|
|
}
|