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

25 lines
649 B
C#
Raw Permalink Normal View History

2024-05-23 21:35:02 -04:00
namespace MPF.UI.Windows
{
/// <summary>
/// Interaction logic for RingCodeGuideWindow.xaml
/// </summary>
public partial class RingCodeGuideWindow : WindowBase
{
2023-11-15 12:10:54 -05:00
public RingCodeGuideWindow()
{
2023-11-30 23:34:44 -05:00
#if NET40_OR_GREATER || NETCOREAPP
InitializeComponent();
2023-11-30 23:34:44 -05:00
#endif
#if NET452_OR_GREATER || NETCOREAPP
2023-11-15 12:10:54 -05:00
var chrome = new System.Windows.Shell.WindowChrome
{
CaptionHeight = 0,
ResizeBorderThickness = new System.Windows.Thickness(0),
};
System.Windows.Shell.WindowChrome.SetWindowChrome(this, chrome);
#endif
}
}
}