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.
34 lines
1.8 KiB
34 lines
1.8 KiB
<Window x:Class="WpfApp1.MainWindow"
|
|
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="MainWindow" Height="450" Width="800">
|
|
<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>
|
|
</Window>
|