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

21 lines
480 B
C#

using System.Windows;
namespace BlackbirdInterface
{
public sealed class EventsFloatWindow : Window
{
public EventsFloatWindow(EventsPane pane)
{
Title = "Events (Floating)";
Width = 1100;
Height = 700;
Background = pane.Background;
Content = pane;
WindowStartupLocation = WindowStartupLocation.CenterOwner;
WindowThemeHelper.ApplyDarkTitleBar(this);
}
}
}