using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
namespace EShangUpdateRelease
{
///
/// App.xaml 的交互逻辑
///
public partial class App : Application
{
///
/// 程序入口
///
public App()
{
Startup += new StartupEventHandler(App_Startup);
}
///
/// 程序启动初始化
///
///
///
void App_Startup(object sender, StartupEventArgs e)
{
MainWindow _MainWindow = new MainWindow();
_MainWindow.Show();
}
}
}