当前位置: 首页>>代码示例>>C#>>正文


C# ExportPngXml.ShowDialog方法代码示例

本文整理汇总了C#中Nikse.SubtitleEdit.Forms.ExportPngXml.ShowDialog方法的典型用法代码示例。如果您正苦于以下问题:C# ExportPngXml.ShowDialog方法的具体用法?C# ExportPngXml.ShowDialog怎么用?C# ExportPngXml.ShowDialog使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Nikse.SubtitleEdit.Forms.ExportPngXml的用法示例。


在下文中一共展示了ExportPngXml.ShowDialog方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: buttonSaveAs_Click

        private void buttonSaveAs_Click(object sender, EventArgs e)
        {
            if (listBox1.Items.Count > -1)
            {
                if (_languages != null && comboBoxLanguages.SelectedIndex >= 0 && comboBoxLanguages.SelectedIndex < _languages.Count)
                    SelectedLanguageString = _languages[comboBoxLanguages.SelectedIndex];
                else
                    SelectedLanguageString = null;

                var subs = new List<VobSubMergedPack>();
                foreach (var x in listBox1.Items)
                {
                    subs.Add((x as SubListBoxItem).SubPack);
                }

                var formSubOcr = new VobSubOcr();
                formSubOcr.InitializeQuick(subs, _palette, Configuration.Settings.VobSubOcr, SelectedLanguageString);
                var subtitle = formSubOcr.ReadyVobSubRip();
                var exportBdnXmlPng = new ExportPngXml();
                exportBdnXmlPng.InitializeFromVobSubOcr(subtitle, new Nikse.SubtitleEdit.Logic.SubtitleFormats.SubRip(), "VOBSUB", "DVD", formSubOcr, SelectedLanguageString);
                exportBdnXmlPng.ShowDialog(this);
            }

        }
开发者ID:athikan,项目名称:subtitleedit,代码行数:24,代码来源:DvdSubRipChooseLanguage.cs

示例2: dOSTToolStripMenuItem_Click

 private void dOSTToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var exportBdnXmlPng = new ExportPngXml();
     exportBdnXmlPng.InitializeFromVobSubOcr(_subtitle, new SubRip(), "DOST", FileName, this, _importLanguageString);
     exportBdnXmlPng.ShowDialog(this);
 }
开发者ID:Tarhan,项目名称:subtitleedit,代码行数:6,代码来源:VobSubOcr.cs

示例3: vobSubToolStripMenuItem_Click

 private void vobSubToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         _fromMenuItem = true;
         exportBdnXmlPng.InitializeFromVobSubOcr(_subtitle, new SubRip(), "VOBSUB", FileName, this, _importLanguageString);
         exportBdnXmlPng.ShowDialog(this);
         _fromMenuItem = false;
     }
 }
开发者ID:mgziminsky,项目名称:subtitleedit,代码行数:10,代码来源:VobSubOcr.cs

示例4: DvdStudioProStl_Click

 private void DvdStudioProStl_Click(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "STL", _fileName, _videoInfo, _videoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:m1croN,项目名称:subtitleedit,代码行数:8,代码来源:Main.cs

示例5: toolStripMenuItemExportEdlClick

 private void toolStripMenuItemExportEdlClick(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "EDL", _fileName, _videoInfo, _videoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:m1croN,项目名称:subtitleedit,代码行数:8,代码来源:Main.cs

示例6: toolStripMenuItemDost_Click

 private void toolStripMenuItemDost_Click(object sender, EventArgs e)
 {
     var exportBdnXmlPng = new ExportPngXml();
     exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "DOST", _fileName, _videoInfo);
     exportBdnXmlPng.ShowDialog(this);
 }
开发者ID:IlgnerBri,项目名称:subtitleedit,代码行数:6,代码来源:Main.cs

示例7: AdobeEncoreFabImageScriptToolStripMenuItemClick

 private void AdobeEncoreFabImageScriptToolStripMenuItemClick(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "FAB", _fileName, _videoInfo, _videoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:m1croN,项目名称:subtitleedit,代码行数:8,代码来源:Main.cs

示例8: ToolStripMenuItemImagePerFrameClick

 private void ToolStripMenuItemImagePerFrameClick(object sender, EventArgs e)
 {
     var exportBdnXmlPng = new ExportPngXml();
     exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "IMAGE/FRAME", _fileName, _videoInfo);
     exportBdnXmlPng.ShowDialog(this);
 }
开发者ID:IlgnerBri,项目名称:subtitleedit,代码行数:6,代码来源:Main.cs

示例9: toolStripMenuItem2_Click

 private void toolStripMenuItem2_Click(object sender, EventArgs e)
 {
     var exportBdnXmlPng = new ExportPngXml();
     exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "SPUMUX", _fileName, _videoInfo);
     _formPositionsAndSizes.SetPositionAndSize(exportBdnXmlPng);
     exportBdnXmlPng.ShowDialog(this);
     _formPositionsAndSizes.SavePositionAndSize(exportBdnXmlPng);
 }
开发者ID:IlgnerBri,项目名称:subtitleedit,代码行数:8,代码来源:Main.cs

示例10: ToolStripMenuItemImagePerFrameClick

 private void ToolStripMenuItemImagePerFrameClick(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(this._subtitle, this.GetCurrentSubtitleFormat(), "IMAGE/FRAME", this._fileName, this._videoInfo, this.VideoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:AsenTahchiyski,项目名称:SoftUni-Projects,代码行数:8,代码来源:Main.cs

示例11: BluraySupToolStripMenuItemClick

 private void BluraySupToolStripMenuItemClick(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(this._subtitle, this.GetCurrentSubtitleFormat(), "BLURAYSUP", this._fileName, this._videoInfo, this.VideoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:AsenTahchiyski,项目名称:SoftUni-Projects,代码行数:8,代码来源:Main.cs

示例12: toolStripMenuItemExportDcinemaInteropClick

 private void toolStripMenuItemExportDcinemaInteropClick(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(this._subtitle, this.GetCurrentSubtitleFormat(), "DCINEMA_INTEROP", this._fileName, this._videoInfo, this.VideoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:AsenTahchiyski,项目名称:SoftUni-Projects,代码行数:8,代码来源:Main.cs

示例13: bluraySupToolStripMenuItem_Click

 private void bluraySupToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.InitializeFromVobSubOcr(_subtitle, new SubRip(), "BLURAYSUP", FileName, this, _importLanguageString);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:suvjunmd,项目名称:subtitleedit,代码行数:8,代码来源:VobSubOcr.cs

示例14: ShowBluraySettings

 private void ShowBluraySettings()
 {
     using (var properties = new ExportPngXml())
     {
         var s = new Subtitle();
         s.Paragraphs.Add(new Paragraph("Test 123." + Environment.NewLine + "Test 456.", 0, 4000));
         properties.Initialize(s, new SubRip(), "BLURAYSUP", null, null, null);
         properties.DisableSaveButtonAndCheckBoxes();
         properties.ShowDialog(this);
     }
 }
开发者ID:Gargamelll,项目名称:subtitleedit,代码行数:11,代码来源:BatchConvert.cs

示例15: toolStripMenuItemExportFcpIImage_Click

 /// <summary>
 /// The tool strip menu item export fcp i image_ click.
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="e">
 /// The e.
 /// </param>
 private void toolStripMenuItemExportFcpIImage_Click(object sender, EventArgs e)
 {
     using (var exportBdnXmlPng = new ExportPngXml())
     {
         exportBdnXmlPng.Initialize(this._subtitle, this.GetCurrentSubtitleFormat(), "FCP", this._fileName, this._videoInfo, this._videoFileName);
         exportBdnXmlPng.ShowDialog(this);
     }
 }
开发者ID:KatyaMarincheva,项目名称:SubtitleEditOriginal,代码行数:17,代码来源:Main.cs


注:本文中的Nikse.SubtitleEdit.Forms.ExportPngXml.ShowDialog方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。