Export to XAML
Exporting Presentations to XAML
Info
In Aspose.Slides 21.6, we implemented support for XAML export. You can now export your presentations to XAML.About XAML
XAML is a descriptive programming language that allows you to build or write user interfaces for apps, especially those that use WPF (Windows Presentation Foundation), UWP (Universal Windows Platform), and Xamarin forms.
XAML, which is an XML-based language, is Microsoft’s variant for describing a GUI. You are likely to use a designer to work on XAML files most of the time, but you can still write and edit your GUI.
Exporting Presentations to XAML With Default Options
This Python code shows you how to export a presentation to XAML with default settings:
import aspose.slides as slides
pres = slides.Presentation("pres.pptx")
pres.save(slides.export.xaml.XamlOptions())
Exporting Presentations to XAML With Custom Options
You get to select options from the IXamlOptions interface that control the export process and determine how Aspose.Slides exports your presentation to XAML.
For example, if you want Aspose.Slides to add hidden slides from your presentation when exporting it to XAML, you can set the ExportHiddenSlides property to true. See this sample Python code:
import aspose.slides as slides
pres = slides.Presentation("pres.pptx")
opt = slides.export.xaml.XamlOptions()
opt.export_hidden_slides = True
pres.save(opt)