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