App.xaml.cs 522 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. namespace OHVProtocolServer
  9. {
  10. /// <summary>
  11. /// App.xaml에 대한 상호 작용 논리
  12. /// </summary>
  13. public partial class App : Application
  14. {
  15. private void Application_Startup(object sender, StartupEventArgs e)
  16. {
  17. this.MainWindow = new MainWindow();
  18. this.MainWindow.Show();
  19. }
  20. }
  21. }