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.
CShark/WpfApp1/UserControlBoite.xaml

19 lines
911 B

<UserControl x:Class="WpfApp1.UserControlBoite"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid Margin="40,10,40,10">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="Nom" FontSize="12" Height="30" MaxWidth="400" Foreground="AliceBlue" TextAlignment="Center" Background="PowderBlue" Grid.Row="0"/>
<TextBox Grid.Row="1" Height="30" MaxWidth="400" BorderBrush="AliceBlue"/>
</Grid>
</UserControl>