<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="" Height="300" Width="300">
<StackPanel HorizontalAlignment="Left" Margin="10">
<Label Margin="5" Content="Username" />
<TextBox Margin="5" BorderBrush="Blue" BorderThickness="1" Background="AliceBlue" Foreground="Black" Width="200"/>
<Label Margin="5" Content="Password" />
<PasswordBox Margin="5" BorderBrush="Blue" BorderThickness="1" Background="AliceBlue" Foreground="Black" Width="200" />
<Button Margin="10" Background="AliceBlue" Foreground="Black" Width="100" Height="20" Content="Submit" />
</StackPanel>
</Window>
|