2022-09-19 20:05:26 +02:00
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
using Avalonia.Media;
|
|
|
|
|
2022-12-29 15:24:05 +01:00
|
|
|
namespace Ryujinx.Ava.UI.Windows
|
2022-09-19 20:05:26 +02:00
|
|
|
{
|
|
|
|
public partial class ContentDialogOverlayWindow : StyleableWindow
|
|
|
|
{
|
|
|
|
public ContentDialogOverlayWindow()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
#if DEBUG
|
|
|
|
this.AttachDevTools();
|
|
|
|
#endif
|
|
|
|
ExtendClientAreaToDecorationsHint = true;
|
|
|
|
TransparencyLevelHint = WindowTransparencyLevel.Transparent;
|
|
|
|
WindowStartupLocation = WindowStartupLocation.Manual;
|
|
|
|
SystemDecorations = SystemDecorations.None;
|
|
|
|
ExtendClientAreaTitleBarHeightHint = 0;
|
|
|
|
Background = Brushes.Transparent;
|
|
|
|
CanResize = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|