| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows;
- namespace OHVProtocolServer
- {
- /// <summary>
- /// App.xaml에 대한 상호 작용 논리
- /// </summary>
- public partial class App : Application
- {
- private void Application_Startup(object sender, StartupEventArgs e)
- {
- this.MainWindow = new MainWindow();
- this.MainWindow.Show();
- }
- }
- }
|