13 lines
290 B
C#
13 lines
290 B
C#
namespace MyApp;
|
|
|
|
using WinUIEx;
|
|
public sealed partial class MainWindow : WindowEx
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
this.SetIcon("Assets/Logo/app_64.ico");
|
|
ExtendsContentIntoTitleBar = true;
|
|
SetTitleBar(AppTitleBar);
|
|
}
|
|
} |