19 lines
1.3 KiB
XML
19 lines
1.3 KiB
XML
<Window x:Class="Test.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:Test"
|
|
mc:Ignorable="d"
|
|
Title="Software Center Repair" Height="200" Width="400" WindowStyle="ThreeDBorderWindow" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
|
<Grid Margin="0,0,0,0" Height="200" VerticalAlignment="Top">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<PasswordBox x:Name="passwordBox" Margin="186,52,50,0" VerticalAlignment="Top" Height="18" Background="White" BorderBrush="#FF839AB3"/>
|
|
<Button Content="OK" Margin="280,96,50,0" VerticalAlignment="Top" Height="30" IsDefault="True" Click="Button_Click"/>
|
|
<Label Content="Code fourni par la DSIGE" HorizontalAlignment="Left" Margin="25,48,0,0" VerticalAlignment="Top" Height="26" Width="148" RenderTransformOrigin="0.639,1.024"/>
|
|
<Label x:Name="errorLabel" Content="" HorizontalAlignment="Left" Margin="25,93,0,0" VerticalAlignment="Top" Width="241" Height="60" Background="{x:Null}" Foreground="Red"/>
|
|
</Grid>
|
|
</Window>
|