26 строки
926 B
Plaintext
26 строки
926 B
Plaintext
|
<Page
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:Skia.UWP.Demo"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:Demo="using:Skia.WindowsDesktop.Demo"
|
||
|
x:Class="Skia.UWP.Demo.MainPage"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<ComboBox x:Name="comboBox" HorizontalAlignment="Stretch" Grid.Row="0" Grid.Column="0" />
|
||
|
|
||
|
<Demo:SkiaView x:Name="skiaView" Grid.Row="1" Grid.Column="0" />
|
||
|
|
||
|
</Grid>
|
||
|
</Page>
|