Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.19 KB | None | 0 0
  1. <Window x:Class="KruunaKlaava.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        Title="MainWindow" Height="462" Width="516" Foreground="#FFFF0808">
  5.     <Window.Background>
  6.         <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
  7.             <GradientStop Color="White" Offset="-1" />
  8.             <GradientStop Color="Black" Offset="1"/>
  9.         </LinearGradientBrush>
  10.     </Window.Background>
  11.     <Grid Margin="0,0,2,-20">
  12.         <Grid.ColumnDefinitions>
  13.             <ColumnDefinition/>
  14.         </Grid.ColumnDefinitions>
  15.         <Button x:Name="button1" Content="Button" HorizontalAlignment="Left" VerticalAlignment="Top" Width="90" Margin="115,370,0,0" Height="40" Click="button1_Click"/>
  16.         <Button x:Name="button2" Content="Button" HorizontalAlignment="Left" VerticalAlignment="Top" Width="90" Margin="303,370,0,0" Height="40"/>
  17.         <Image x:Name="imageBox" Height="282" Width="282" Margin="115,10,109,160"/>
  18.         <Label x:Name="label" Content="Label" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="236,331,0,0" Foreground="#FF68FF00"/>
  19.     </Grid>
  20. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement