6f0395538b
* wip * use embedded window * fix race condition on opengl Windows * fix glx issues on prime nvidia * fix mouse support win32 * clean up * addressed review * addressed review * fix warnings * fix sotware keyboard dialog * Update Ryujinx.Ava/Ui/Applet/SwkbdAppletDialog.axaml.cs Co-authored-by: gdkchan <gab.dark.100@gmail.com> * remove double semi Co-authored-by: gdkchan <gab.dark.100@gmail.com>
25 lines
No EOL
739 B
C#
25 lines
No EOL
739 B
C#
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.Media;
|
|
|
|
namespace Ryujinx.Ava.Ui.Windows
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
} |