13 lines
392 B
C#
13 lines
392 B
C#
PasswordBox with Margin
|
|
|
|
<Window x:Class="Window1"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="UsePasswordBox" Height="360" Width="660">
|
|
<Grid>
|
|
<PasswordBox Height="29" Margin="32,40,66,0"
|
|
Name="PasswordBox1" VerticalAlignment="Top" />
|
|
</Grid>
|
|
</Window>
|
|
|