Files
8damon-Blackbird-Platform/Client/analysis/Windows/Floating/EtwFloatWindow.cs
T
2026-04-03 14:23:15 +10:00

20 lines
466 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.ApplyDarkTitleBar(this);
}
}
}