Files
MPF/MPF.UI.Core/Windows/RingCodeGuideWindow.xaml.cs

23 lines
598 B
C#
Raw Normal View History

2022-04-11 10:32:03 -07:00
namespace MPF.UI.Core.Windows
{
/// <summary>
/// Interaction logic for RingCodeGuideWindow.xaml
/// </summary>
public partial class RingCodeGuideWindow : WindowBase
{
2023-11-15 12:10:54 -05:00
public RingCodeGuideWindow()
{
#if NET452_OR_GREATER
var chrome = new System.Windows.Shell.WindowChrome
{
CaptionHeight = 0,
ResizeBorderThickness = new System.Windows.Thickness(0),
};
System.Windows.Shell.WindowChrome.SetWindowChrome(this, chrome);
#endif
InitializeComponent();
}
}
}