This repository has been archived on 2025-06-24. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
590 B
C#
Raw Permalink Normal View History

//using System;
//using System.Collections.Generic;
//using System.Configuration;
//using System.Data;
//using System.Linq;
//using System.Threading.Tasks;
2025-03-19 10:04:16 +08:00
using System.Windows;
2025-03-24 13:49:48 +08:00
namespace Karaoke_Kingpin.Controller
2025-03-19 10:04:16 +08:00
{
/// <summary>
/// App.xaml 的互動邏輯
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
// 這裡設置你的 Xceed LicenseKey
//Xceed.Wpf.Toolkit.Licenser.LicenseKey = "WTK46P7AYAZU4KA2AFA";
}
}
}