WIn_RustTools/RustTools/Themes/NullPage.xaml.cs

19 lines
427 B
C#
Raw Normal View History

2024-08-13 13:59:14 +00:00
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);
}
}