Advertisement
Diaxon

Untitled

Nov 26th, 2023
1,192
0
177 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.27 KB | None | 0 0
  1. <Window x:Class="zadanko3.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.        xmlns:local="clr-namespace:zadanko3"
  7.        mc:Ignorable="d"
  8.        Title="MainWindow" Height="450" Width="800">
  9.     <Border Margin="10" BorderBrush="Black" BorderThickness="3">
  10.         <Grid>
  11.             <Button Content="Black/White" Background="Black" Foreground="White" BorderBrush="Black" BorderThickness="2" Padding="10" Margin="50,300,0,0" Width="150" HorizontalAlignment="Left" VerticalAlignment="Top"/>
  12.             <Button Content="Green/Yellow" Background="Green" Foreground="Yellow" BorderBrush="Black" BorderThickness="2" Padding="10" Margin="50,250,0,0" Width="150"  HorizontalAlignment="Left" VerticalAlignment="Top"/>
  13.             <Button Content="Blue/Yellow" Background="Blue" Foreground="Yellow" BorderBrush="Black" BorderThickness="2"  Padding="10" Margin="50,200,0,0" Width="150"  HorizontalAlignment="Left" VerticalAlignment="Top"/>
  14.             <Button Content="Green/Yellow" Background="Green" Foreground="Yellow" BorderBrush="Black" BorderThickness="2"  Padding="10" Margin="50,150,0,0" Width="150"  HorizontalAlignment="Left" VerticalAlignment="Top"/>
  15.             <Button Content="Red/Blue" Background="Red" Foreground="Blue" BorderBrush="Black" BorderThickness="2"  Padding="10" Margin="50,100,0,0" Width="150"  HorizontalAlignment="Left" VerticalAlignment="Top"/>
  16.  
  17.             <TextBlock HorizontalAlignment="Center" Foreground="white" Background="black" TextWrapping="Wrap" Text="Settings" VerticalAlignment="Top" Height="61" Width="774" FontSize="47"/>
  18.             <TextBlock HorizontalAlignment="Left" Margin="561,150,0,0" TextWrapping="Wrap" Text="Text 1" VerticalAlignment="Top" FontSize="23" FontWeight="Bold"/>
  19.             <TextBlock HorizontalAlignment="Left" Margin="561,200,0,0" TextWrapping="Wrap" Text="Text 2" VerticalAlignment="Top" FontSize="23"/>
  20.             <TextBlock HorizontalAlignment="Left" Margin="561,250,0,0" TextWrapping="Wrap" Text="Text 3" VerticalAlignment="Top" FontSize="23"/>
  21.         </Grid>
  22.     </Border>
  23. </Window>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement