48 строки
2.7 KiB
XML
48 строки
2.7 KiB
XML
<democommon:DemoControl
|
|
x:Class="syncfusion.presentationdemos.wpf.CustomizingAppearance"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:democommon="clr-namespace:syncfusion.demoscommon.wpf;assembly=syncfusion.demoscommon.wpf"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:numberformat="clr-namespace:System.Globalization;assembly=mscorlib"
|
|
xmlns:skin="clr-namespace:Syncfusion.SfSkinManager;assembly=Syncfusion.SfSkinManager.WPF"
|
|
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
|
|
d:DesignHeight="200"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid x:Name="View" Margin="5,0,0,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock x:Name="TextBlock2" Grid.Row="2" Grid.ColumnSpan="4"/>
|
|
<TextBlock x:Name="WinRTText2" Grid.Row="3" Grid.ColumnSpan="4" TextWrapping="Wrap" Text="Click the button to view PowerPoint Presentation generated by Essential Presentation. This sample illustrates editing existing SmartArt diagram properties."/>
|
|
<TextBlock x:Name="text1" Grid.Row="4" Grid.ColumnSpan="4"/>
|
|
<StackPanel Name="stackPnlOptions" Grid.Row="9" Grid.ColumnSpan="4" Orientation="Horizontal" HorizontalAlignment="Left">
|
|
<RadioButton Content="PowerPoint Presentation" x:Name="radioButton" Width="155" IsChecked="True"/>
|
|
<RadioButton Content="PDF Document" x:Name="radioButton1" Width="150" />
|
|
</StackPanel>
|
|
<Button x:Name="Button1" Grid.Row="12" Grid.ColumnSpan="1" Content="Customize SmartArt" HorizontalAlignment="Left" Click="btnCreateImage_Click" Height="Auto" Width="130" Padding="10,10,10,10" Margin="0,10" />
|
|
</Grid>
|
|
</democommon:DemoControl>
|