Files
2026-05-06 09:11:30 +10:00

19 lines
470 B
C#

using System.Windows;
namespace BlackbirdInterface
{
public sealed class EtwFloatWindow : Window
{
public EtwFloatWindow(EtwPane pane)
{
Title = "ETW (Floating)";
Width = 980;
Height = 680;
Background = pane.Background;
Content = pane;
WindowStartupLocation = WindowStartupLocation.CenterOwner;
WindowThemeHelper.WireThemeAwareTitleBar(this);
}
}
}