WIn_RustTools/RustTools/Themes/NullPage.xaml.cs
2024-08-13 21:59:14 +08:00

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);
}
}