mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:58:34 +00:00
6e02cac952
* remove content dialog placeholder from all windows * remove redundant window argument * redesign user profile window * wip * use avalonia auto name generator * add edit and new user options * move profile image selection to content dialog * remove usings * fix updater * address review * adjust avatar dialog size * add validation for user editor * fix typo * Shorten some labels
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Controls.Primitives;
|
|
using Avalonia.Media.Imaging;
|
|
using Avalonia.Platform;
|
|
using FluentAvalonia.UI.Controls;
|
|
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace Ryujinx.Ava.Ui.Windows
|
|
{
|
|
public class StyleableWindow : Window
|
|
{
|
|
public IBitmap IconImage { get; set; }
|
|
|
|
public StyleableWindow()
|
|
{
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
TransparencyLevelHint = WindowTransparencyLevel.None;
|
|
|
|
using Stream stream = Assembly.GetAssembly(typeof(Ryujinx.Ui.Common.Configuration.ConfigurationState)).GetManifestResourceStream("Ryujinx.Ui.Common.Resources.Logo_Ryujinx.png");
|
|
|
|
Icon = new WindowIcon(stream);
|
|
stream.Position = 0;
|
|
IconImage = new Bitmap(stream);
|
|
}
|
|
|
|
protected override void OnOpened(EventArgs e)
|
|
{
|
|
base.OnOpened(e);
|
|
}
|
|
|
|
protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
|
|
{
|
|
base.OnApplyTemplate(e);
|
|
|
|
ExtendClientAreaChromeHints = ExtendClientAreaChromeHints.SystemChrome | ExtendClientAreaChromeHints.OSXThickTitleBar;
|
|
}
|
|
}
|
|
} |