mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
19 lines
470 B
C#
19 lines
470 B
C#
using System.Windows;
|
|
|
|
namespace BlackbirdInterface
|
|
{
|
|
public sealed class EtwFloatWindow : Window
|
|
{
|
|
public EtwFloatWindow(EtwPane pane)
|
|
{
|
|
Title = "ETW (Floating)";
|
|
Width = 980;
|
|
Height = 680;
|
|
Background = pane.Background;
|
|
Content = pane;
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
WindowThemeHelper.WireThemeAwareTitleBar(this);
|
|
}
|
|
}
|
|
}
|