21 lines
427 B
C#
21 lines
427 B
C#
using System.Configuration;
|
|
using System.Data;
|
|
using System.Windows;
|
|
|
|
namespace Qrakhen.Qamp.Editor;
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
MainWindow window = new MainWindow() {
|
|
DataContext = new ViewModel.EditorFrameViewModel()
|
|
};
|
|
|
|
window.Show();
|
|
}
|
|
}
|
|
|