ISET2018_WPF/ISET2018_WPF/MainWindow.xaml

33 lines
1.6 KiB
XML

<Window x:Class="ISET2018_WPF.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:ISET2018_WPF"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="75" />
<RowDefinition Height="95" />
<RowDefinition Height="5" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="150" />
<ColumnDefinition Width="150" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Text="Bonjour à tous" Height="30" Margin="5" VerticalAlignment="Top" HorizontalAlignment="Center" Name="tbBonjour"
FontFamily="Comic Sans MS" FontSize="18" Foreground="Red">
<TextBlock.Effect >
<DropShadowEffect Color="Blue" />
</TextBlock.Effect>
</TextBlock>
<Button Content="C L I C" Grid.Column="1" Width="75" Height="25" VerticalAlignment="Top" Margin="10" Name="btnClic" Click="btnClic_Click"/>
<Image Source="pack://siteforigin:,,,\Resources\IMG_20180804_110221_146.jpg" Grid.Row="1"
Width="100" Height="70" Stretch="Uniform" Name="ImgYeti"/>
</Grid>
</Window>