mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
20 lines
593 B
C#
20 lines
593 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Media;
|
|
|
|
namespace Ryujinx.Ava.UI.Windows
|
|
{
|
|
public partial class ContentDialogOverlayWindow : StyleableWindow
|
|
{
|
|
public ContentDialogOverlayWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
TransparencyLevelHint = [WindowTransparencyLevel.Transparent];
|
|
WindowStartupLocation = WindowStartupLocation.Manual;
|
|
SystemDecorations = SystemDecorations.None;
|
|
ExtendClientAreaTitleBarHeightHint = 0;
|
|
Background = Brushes.Transparent;
|
|
CanResize = false;
|
|
}
|
|
}
|
|
}
|