Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 19 lines 359 B view raw
1using Microsoft.UI.Xaml; 2 3namespace AestheticComputer; 4 5public partial class App : Application 6{ 7 private Window? _window; 8 9 public App() 10 { 11 this.InitializeComponent(); 12 } 13 14 protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) 15 { 16 _window = new MainWindow(); 17 _window.Activate(); 18 } 19}