-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathMainPage.xaml
More file actions
26 lines (22 loc) · 1.1 KB
/
MainPage.xaml
File metadata and controls
26 lines (22 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Page
x:Class="WriteableBitmapExBlitSample.WinRT.MainPage"
IsTabStop="false"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WriteableBitmapExBlitSample.WinRT"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<StackPanel>
<TextBlock HorizontalAlignment="Center" FontSize="14" Text="WriteableBitmapEx - WinRT WriteableBitmap Extensions - Blit Sample" />
<Border Width="640" Height="480" Background="Black">
<Image x:Name="image" Width="640" Height="480"/>
</Border>
</StackPanel>
<Border Margin="20,20" Background="#55FFFFFF" VerticalAlignment="Top" HorizontalAlignment="Left">
<TextBlock Name="FpsCounter" FontFamily="Verdana" FontSize="22" />
</Border>
<Button ></Button>
</Grid>
</Page>