2024-05-23 21:35:02 -04:00
|
|
|
|
namespace MPF.UI.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()
|
|
|
|
|
|
{
|
2023-11-30 23:34:44 -05:00
|
|
|
|
#if NET40_OR_GREATER || NETCOREAPP
|
2023-11-23 02:32:57 -05:00
|
|
|
|
InitializeComponent();
|
2023-11-30 23:34:44 -05:00
|
|
|
|
#endif
|
2023-11-23 02:32:57 -05:00
|
|
|
|
|
2023-11-22 16:26:31 -05:00
|
|
|
|
#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
|
|
|
|
|
|
}
|
2021-04-06 11:05:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|