programming-examples/c-sharp/Others/PasswordBox with Margin.cs
2019-11-15 12:59:38 +01:00

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>