Files
MPF/MPF.UI.Core/Windows/RingCodeGuideWindow.xaml.cs
2023-11-23 02:32:57 -05:00

23 lines
612 B
C#

namespace MPF.UI.Core.Windows
{
/// <summary>
/// Interaction logic for RingCodeGuideWindow.xaml
/// </summary>
public partial class RingCodeGuideWindow : WindowBase
{
public RingCodeGuideWindow()
{
InitializeComponent();
#if NET452_OR_GREATER || NETCOREAPP
var chrome = new System.Windows.Shell.WindowChrome
{
CaptionHeight = 0,
ResizeBorderThickness = new System.Windows.Thickness(0),
};
System.Windows.Shell.WindowChrome.SetWindowChrome(this, chrome);
#endif
}
}
}