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