using System; using System.Windows; namespace Phantasm.WinUI { /// /// Interaction logic for Window1.xaml /// public partial class AppStart : Window { public AppStart() { InitializeComponent(); this.Loaded += new RoutedEventHandler(AppStart_Loaded); } void AppStart_Loaded(object sender, RoutedEventArgs e) { } } }