mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-14 05:36:10 +00:00
This does not include the UI, as per the same reasons why .NET Framework 4.0 doesn't support it.
23 lines
612 B
C#
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();
|
|
}
|
|
}
|
|
}
|