19 lines
427 B
C#
19 lines
427 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.IO;
|
||
|
using System.Linq;
|
||
|
using System.Runtime.InteropServices.WindowsRuntime;
|
||
|
using Microsoft.UI.Xaml;
|
||
|
using Microsoft.UI.Xaml.Controls;
|
||
|
using Microsoft.UI.Xaml.Controls.Primitives;
|
||
|
using RustTools.Styles;
|
||
|
|
||
|
namespace RustTools.Themes;
|
||
|
public sealed partial class NullPage : UserControl
|
||
|
{
|
||
|
public NullPage()
|
||
|
{
|
||
|
DefaultStyleKey = typeof(NullPage);
|
||
|
}
|
||
|
}
|