14 lines
951 B
XML
14 lines
951 B
XML
<Window x:Class="eDosStation.AskPwd"
|
|
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:eDosStation"
|
|
mc:Ignorable="d"
|
|
Title="First setup" Height="300" Width="600" BorderThickness="1" ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True" WindowStartupLocation="CenterScreen" >
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<TextBlock Text="Sql Login Paswoord" Padding="10,10,10,10" Foreground="Red" FontWeight="Bold" FontSize="14" />
|
|
<PasswordBox x:Name="ResponseTextBox" BorderBrush="Black" Margin="10,10,10,10" />
|
|
<Button Content="OK" Click="OKButton_Click" />
|
|
</StackPanel>
|
|
</Window>
|