mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
19 lines
498 B
C#
19 lines
498 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.WireThemeAwareTitleBar(this);
|
|
}
|
|
}
|
|
}
|