當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。