/
legor
/
Cleaner
Обзор
Документация
Войти
/
legor
/
Cleaner
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
MainWindow.xaml
28 строк
1 KB
PC-305-6
first commit
19 окт 2024, 07:33
19 окт 2024, 07:33
87a187a
Код
Авторство
О чём код?
<Window x:Class="Cleaner.MainWindow" 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:Cleaner" mc:Ignorable="d" Title="Авторизация" Height="500" Width="400" WindowStartupLocation="CenterScreen" WindowStyle="ToolWindow" MinHeight="500" MinWidth ="400" MaxHeight="500" MaxWidth="400"> <Grid> <StackPanel> <Label Content="Логин: "/> <TextBox x:Name="txLogin"/> <Label Content="Пароль: "/> <TextBox x:Name="txPass"/> <PasswordBox x:Name="txPassBox"/> <CheckBox x:Name="ShowPass" Content="Показать пароль"/> <Button x:Name="btLogin" Content="Авторизоваться"/> </StackPanel> </Grid> </Window>