-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
17 lines (16 loc) · 875 Bytes
/
MainWindow.xaml
File metadata and controls
17 lines (16 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="WriteableBitmapExBlitSample.Wpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow">
<Grid x:Name="LayoutRoot" Width="640" Height="480">
<StackPanel>
<TextBlock HorizontalAlignment="Center" FontSize="14" Text="WriteableBitmapEx - WPF 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" ></TextBlock>
</Border>
</Grid>
</Window>