-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCredentialDialog.xaml
More file actions
25 lines (19 loc) · 1.08 KB
/
CredentialDialog.xaml
File metadata and controls
25 lines (19 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Window x:Class="SecurePassWPF.CredentialDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Новая запись"
Height="329" Width="445"
WindowStartupLocation="CenterOwner"
ResizeMode="NoResize"
Background="#FF2D2D30"
WindowStyle="ToolWindow">
<StackPanel Margin="20">
<Label Content="Сервис:" Foreground="White" FontSize="14"/>
<TextBox x:Name="ServiceTextBox" Margin="0,0,0,15" Padding="5" FontSize="14"/>
<Label Content="Логин:" Foreground="White" FontSize="14"/>
<TextBox x:Name="UsernameTextBox" Margin="0,0,0,15" Padding="5" FontSize="14"/>
<Label Content="Пароль:" Foreground="White" FontSize="14"/>
<TextBox x:Name="PasswordTextBox" Margin="0,0,0,25" Padding="5" FontSize="14"/>
<Button x:Name="OkButton" Content="Сохранить" IsDefault="True" Height="35" FontSize="14" Click="OkButton_Click"/>
</StackPanel>
</Window>