ExtensionPage.xaml 940 B

123456789101112131415
  1. <UserControl x:Class="PixiEditor.ExtensionExample.ExtensionPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PixiEditor.ExtensionExample"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <StackPanel>
  10. <TextBlock>This is a example extension, showing off how to make your own extension.</TextBlock>
  11. <Grid Height="20"/>
  12. <TextBlock>This in particular is the extension page.</TextBlock>
  13. <TextBlock>You can make your own extension page by creating a new user control, and setting it as the extension page in your extension</TextBlock>
  14. </StackPanel>
  15. </UserControl>