Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows;
- namespace WpfApp1
- {
- public class App : Application
- {
- [STAThread]
- public static void Main()
- {
- App app = new App();
- MainWindow mainWindow = new MainWindow();
- mainWindow.Show();
- app.Run();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement