You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.3 KiB
21 lines
1.3 KiB
<Window x:Class="WpfApp1.AddAShark"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:WpfApp1"
|
|
mc:Ignorable="d"
|
|
Title="AddAShark" Height="450" Width="800">
|
|
<DockPanel>
|
|
<DockPanel x:Name="Button" DockPanel.Dock="Top">
|
|
<TextBlock Text="ADD A SHARK" Background="AliceBlue" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="20" FontSize="30" FontWeight="Bold" FontFamily="Poppins" Foreground="PowderBlue"/>
|
|
<Button x:Name="add" HorizontalAlignment="Right" VerticalAlignment="Center" Content="x" BorderBrush="AliceBlue" BorderThickness="2" Background="PowderBlue" Width="50" Height="50" FontFamily="Poppins" FontSize="25" Foreground="AliceBlue"></Button>
|
|
</DockPanel>
|
|
<DockPanel Background="AliceBlue">
|
|
<TextBlock DockPanel.Dock="Top" Text="Shark information :" Margin="15" FontSize="18" Foreground="CadetBlue"/>
|
|
<local:UserControlBoite/>
|
|
<local:UserControlBoite/>
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|