Example #1
0
 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);
     }
 }