Files
MPF/MPF.UI.Core/Windows/RingCodeGuideWindow.xaml.cs
Matt Nadareski 26e5d33d17 Support .NET Framework 3.5
This does not include the UI, as per the same reasons why .NET Framework 4.0 doesn't support it.
2023-11-22 16:26:31 -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()
{
#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
InitializeComponent();
}
}
}