|
|
|
@ -6,28 +6,34 @@
|
|
|
|
|
xmlns:local="clr-namespace:WpfApp1"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
Title="MainWindow" Height="450" Width="800">
|
|
|
|
|
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<DockPanel DockPanel.Dock="Left" Background="PowderBlue">
|
|
|
|
|
<TextBlock Text="Océans" Margin="5" FontStyle="Italic" DockPanel.Dock="Top"/>
|
|
|
|
|
<ListBox Background="AliceBlue">
|
|
|
|
|
<ListBoxItem>
|
|
|
|
|
<Border BorderThickness="2" BorderBrush="PowderBlue" CornerRadius="4" Padding="4">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Image Source="https://www.comersis.com/c-images/WORLD/World-countries-b.jpg" Margin="315,-9,1,31"></Image>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left" Height="16" Margin="610,243,0,0" Text="TextBlock" TextWrapping="Wrap" VerticalAlignment="Top" Width="2"/>
|
|
|
|
|
<Menu Margin="0,0,485,10" Background="PowderBlue">
|
|
|
|
|
<ComboBox Width="120" Name="Zone" VerticalAlignment="Top" HorizontalAlignment="Left" Background="PowderBlue">
|
|
|
|
|
<ComboBoxItem Content="Tous" IsSelected="True"></ComboBoxItem>
|
|
|
|
|
<ComboBoxItem Content="Pacifique"></ComboBoxItem>
|
|
|
|
|
<ComboBoxItem Content="Atlantique"></ComboBoxItem>
|
|
|
|
|
<ComboBoxItem Content="Indien"></ComboBoxItem>
|
|
|
|
|
<ComboBoxItem Content="Arctique"></ComboBoxItem>
|
|
|
|
|
</ComboBox>
|
|
|
|
|
</Menu>
|
|
|
|
|
<Rectangle Stroke="Black" Margin="315,0,1,399" RenderTransformOrigin="0.5,0.5">
|
|
|
|
|
<Rectangle.RenderTransform>
|
|
|
|
|
<TransformGroup>
|
|
|
|
|
<ScaleTransform ScaleY="1"/>
|
|
|
|
|
<SkewTransform/>
|
|
|
|
|
<RotateTransform/>
|
|
|
|
|
<TranslateTransform/>
|
|
|
|
|
</TransformGroup>
|
|
|
|
|
</Rectangle.RenderTransform>
|
|
|
|
|
</Rectangle>
|
|
|
|
|
<TextBlock Text="CShark" TextWrapping="Wrap" Margin="320,0,1,401"/>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="2"/>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
<RowDefinition/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Image Source="U:\IHM\repos\WpfApp1\WpfApp1\Images\Heterodontus_francisci_catalina-1280-By-Ed-Bierman-from-CA-usa-Horn-Shark-CC-BY-2.0.jpg" Width="50" Height="30" Grid.RowSpan="3" Margin="4"/>
|
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="1" Text="Requin Dormeur Mexicain" FontWeight="DemiBold"/>
|
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="2" Text="Heterodontus mexicanus" FontWeight="Thin"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
</ListBoxItem>
|
|
|
|
|
</ListBox>
|
|
|
|
|
</DockPanel>
|
|
|
|
|
<TextBlock DockPanel.Dock="Top" Text="CSHARK" Background="PowderBlue" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="20" FontSize="30" FontWeight="Bold" FontFamily="Poppins" Foreground="AliceBlue" />
|
|
|
|
|
<Grid Background="AliceBlue"></Grid>
|
|
|
|
|
</DockPanel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Window>
|
|
|
|
|