ISET2018_WPF/ISET2018_WPF/Fen1.xaml

24 lines
977 B
XML

<Window x:Class="ISET2018_WPF.Fen1"
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="Fen1" Height="450" Width="800">
<StackPanel>
<WrapPanel Margin="5">
<!--2h05-->
<TextBlock Text="Titre : "/>
<TextBox Width="150" Text="{Binding Title, UpdateSourceTrigger=PropertyChanged}" />
</WrapPanel>
<WrapPanel Margin="5">
<!--2h05-->
<TextBlock Text="Dimension : "/>
<TextBox Width="150" Text="{Binding Width}" />
<TextBlock Text="x"/>
<TextBox Width="150" Text="{Binding Height}" />
</WrapPanel>
</StackPanel>
</Window>