15 lines
353 B
C#
15 lines
353 B
C#
using FluentAvalonia.UI.Windowing;
|
|
|
|
namespace Wallet.Avalonia;
|
|
|
|
public partial class MainWindow : AppWindow
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
TitleBar.ExtendsContentIntoTitleBar = true;
|
|
TitleBar.TitleBarHitTestType = TitleBarHitTestType.Complex;
|
|
|
|
SplashScreen = new ApplicationSplashScreen();
|
|
}
|
|
} |