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

20 lines
499 B
C#

using System.Windows;
namespace BlackbirdInterface
{
public sealed class PerformanceFloatWindow : Window
{
public PerformanceFloatWindow(PerformancePane pane)
{
Title = "Performance (Floating)";
Width = 1180;
Height = 520;
Background = pane.Background;
Content = pane;
WindowStartupLocation = WindowStartupLocation.CenterOwner;
WindowThemeHelper.ApplyDarkTitleBar(this);
}
}
}