-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
16 lines (15 loc) · 921 Bytes
/
MainWindow.xaml
File metadata and controls
16 lines (15 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="WriteableBitmapExBlitAlphaRepro.Wpf.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="612" Width="1550" Loaded="MainWindow_OnLoaded">
<Grid>
<StackPanel Orientation="Horizontal">
<Grid>
<Image x:Name="ImgOrg" VerticalAlignment="Top" HorizontalAlignment="Left" Width="512" Height="512" />
<Image x:Name="ImgOrgOverlay" VerticalAlignment="Top" HorizontalAlignment="Left" Width="150" Height="150" />
</Grid>
<Image x:Name="ImgMod" VerticalAlignment="Top" HorizontalAlignment="Left" Width="512" Height="512" />
<Image x:Name="ImgModPrgba" VerticalAlignment="Top" HorizontalAlignment="Left" Width="512" Height="512" />
</StackPanel>
</Grid>
</Window>