<Page
x:Class="Win2D01.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Win2D01"
xmlns:canvas="using:Microsoft.Graphics.Canvas.UI.Xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource
ApplicationPageBackgroundThemeBrush}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="199*"/>
<ColumnDefinition Width="1301*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="63*"/>
<RowDefinition Height="437*"/>
</Grid.RowDefinitions>
<Button x:Name="BtnLoad" Click="BtnLoad_Click" Content="Load
Image"
Grid.Row="0" Grid.Column="0" VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" />
<Border Grid.Row="1" Grid.Column="1" BorderBrush="Black"
BorderThickness="2"
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch" >
<Image x:Name="ctlImage" />
</Border>
</Grid>
</Page>
|