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

25 lines
654 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()
{
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
}
}
}