private void InitExportUI_OnSuccess <T>(FormatType FType, T TInstance) where T : new() { ExportUI ExUI = new ExportUI(FType, (IExportFormat)TInstance); ExUI.Owner = this; ExUI.Show(); }
private void FileMenu_Import_BT_Click(object sender, RoutedEventArgs e) { ExportUI ExpUI = new ExportUI(FormatType.Import, new ExportBestTrack()); ExpUI.Owner = this; ExpUI.Show(); }