Files
2026-05-06 09:11:30 +10:00

20 lines
484 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.WireThemeAwareTitleBar(this);
}
}
}