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.
41 lines
2.4 KiB
41 lines
2.4 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="CadetBlue">
|
|
<TextBlock DockPanel.Dock="Top" Text="Shark information :" Margin="15" FontSize="18" Foreground="AliceBlue" FontFamily="Corbel Light"/>
|
|
<Grid Width="800">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<local:UserControlBoite Grid.Column="0" Grid.Row="0"/>
|
|
<local:UserControlBoite Grid.Column="0" Grid.Row="1"/>
|
|
<local:UserControlBoite Grid.Column="0" Grid.Row="2"/>
|
|
<local:UserControlBoite Grid.Column="0" Grid.Row="3"/>
|
|
<local:UserControlBoite Grid.Column="1" Grid.Row="0"/>
|
|
<local:UserControlBoite Grid.Column="1" Grid.Row="1"/>
|
|
<local:UserControlBoite Grid.Column="1" Grid.Row="2"/>
|
|
<local:UserControlBoite Grid.Column="1" Grid.Row="3"/>
|
|
<Button Grid.Column="1" Grid.Row="5" Content="Submit" Margin="15" Width="100" Background="PowderBlue" BorderBrush="PowderBlue" Foreground="AliceBlue"/>
|
|
</Grid>
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</Window>
|