Example #1
0
        private void OnCsvExportMenuItem_Click(object sender, EventArgs e)
        {
            Analytics.Track("Export CSV");

            var action = new Action <string>(path => CSVTranscriptionExporter.Export(path, (((AnnotationComponentFile)_file).Tiers)));

            DoSimpleExportDialog(".csv", "Comma Separated Values File", "transcription", string.Empty, action);
        }
        private void OnCsvExportMenuItem_Click(object sender, EventArgs e)
        {
            Analytics.Track("Export CSV");

            var action = new Action <string>(path => CSVTranscriptionExporter.Export(path, (((AnnotationComponentFile)_file).Tiers)));

            DoSimpleExportDialog(".csv",
                                 LocalizationManager.GetString("SessionsView.Transcription.TextAnnotation.CommaSeparatedValuesFileDescriptor", "Comma Separated Values File ({0})"),
                                 "transcription", string.Empty, action);
        }