本文整理汇总了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);
}
}
示例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);
}
示例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;
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
示例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);
}
}
示例8: ToolStripMenuItemImagePerFrameClick
private void ToolStripMenuItemImagePerFrameClick(object sender, EventArgs e)
{
var exportBdnXmlPng = new ExportPngXml();
exportBdnXmlPng.Initialize(_subtitle, GetCurrentSubtitleFormat(), "IMAGE/FRAME", _fileName, _videoInfo);
exportBdnXmlPng.ShowDialog(this);
}
示例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);
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}
示例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);
}
}