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