basic
This commit is contained in:
17
App.xaml.cs
Normal file
17
App.xaml.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace MyApp;
|
||||
|
||||
public partial class App
|
||||
{
|
||||
private Window? window;
|
||||
|
||||
public App()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
}
|
||||
|
||||
protected override void OnLaunched(LaunchActivatedEventArgs args)
|
||||
{
|
||||
window = new MainWindow();
|
||||
window.Activate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user