27 lines
552 B
C#
27 lines
552 B
C#
using System.Configuration;
|
|
using System.Data;
|
|
using System.Windows;
|
|
using Yztob.AiSports.Common;
|
|
using Yztob.AiSports.Common.Implement;
|
|
|
|
namespace Wpf_AiSportsMicrospace;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
base.OnStartup(e);
|
|
|
|
#if DEBUG
|
|
// 初始化 DebugTracker
|
|
DebugTracker.Enabled = true;
|
|
DebugTracker.Channels.Add(new DiagnosisDebugTrackChannel());
|
|
#endif
|
|
|
|
}
|
|
}
|
|
|