示例#1
0
        private void OnPlainTextExportMenuItem_Click(object sender, EventArgs e)
        {
            Analytics.Track("Export Plain Text");

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

            DoSimpleExportDialog(".txt", "Text File", "transcription", string.Empty, action);
        }
示例#2
0
        private void OnPlainTextExportMenuItem_Click(object sender, EventArgs e)
        {
            Analytics.Track("Export Plain Text");

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

            DoSimpleExportDialog(FileSystemUtils.kTextFileExtension, FileSystemUtils.LocalizedVersionOfTextFileDescriptor,
                                 "transcription", string.Empty, action);
        }