2022-04-11 10:32:03 -07:00
|
|
|
|
namespace MPF.UI.Core.Windows
|
2021-04-06 11:05:03 -07:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for RingCodeGuideWindow.xaml
|
|
|
|
|
|
/// </summary>
|
2021-08-04 14:17:53 -07:00
|
|
|
|
public partial class RingCodeGuideWindow : WindowBase
|
2021-04-06 11:05:03 -07:00
|
|
|
|
{
|
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();
|
|
|
|
|
|
}
|
2021-04-06 11:05:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|