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

21 lines
495 B
C#

using System.Windows;
namespace BlackbirdInterface
{
public sealed class HeuristicsFloatWindow : Window
{
public HeuristicsFloatWindow(HeuristicsPane pane)
{
Title = "Heuristics (Floating)";
Width = 980;
Height = 520;
Background = pane.Background;
Content = pane;
WindowStartupLocation = WindowStartupLocation.CenterOwner;
WindowThemeHelper.ApplyDarkTitleBar(this);
}
}
}