示例#1
0
        private void InitExportUI_OnSuccess <T>(FormatType FType, T TInstance) where T : new()
        {
            ExportUI ExUI = new ExportUI(FType, (IExportFormat)TInstance);

            ExUI.Owner = this;
            ExUI.Show();
        }
示例#2
0
        private void FileMenu_Import_BT_Click(object sender, RoutedEventArgs e)
        {
            ExportUI ExpUI = new ExportUI(FormatType.Import, new ExportBestTrack());

            ExpUI.Owner = this;
            ExpUI.Show();
        }