123456789101112131415161718192021222324252627282930313233343536 |
- <Window x:Class="RKISPATTERN.View.MainWindow"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- 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:RKISPATTERN"
- mc:Ignorable="d"
- Title="MainWindow" Height="450" Width="800">
- <Grid Background="#FF315F82">
- <Border Background="#FFCCC5C5" Margin="20" Padding="20">
- <Border.Effect>
- <DropShadowEffect BlurRadius="50" Color="Black" ShadowDepth="10"></DropShadowEffect>
- </Border.Effect>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBox x:Name="tbLogUserName" Grid.ColumnSpan="2" materialDesign:HintAssist.Hint="Введите логин" Background="#00000000" FontSize="35" Margin="0,0,0,75" Grid.RowSpan="2" Cursor="Arrow" Text="{Binding CurrentUserLogin, UpdateSourceTrigger=PropertyChanged}"/>
- <PasswordBox x:Name="tbLogPassword1" Grid.ColumnSpan="2" materialDesign:HintAssist.Hint="Введите пароль" Grid.Row="1" FontSize="35" Cursor="IBeam" />
- <Button Grid.Row="5" Grid.Column="0" Width="150" Content="РЕГИСТРАЦИЯ" Command="{Binding ShowRegWindow}"/>
- <Button Grid.Row="5" Grid.Column="1" Width="150" Content="ВХОД" Background="#FF60B73A" Command="{Binding LogUser}" CommandParameter="{Binding ElementName=tbLogPassword1}" Cursor="Hand"/>
- </Grid>
- </Border>
- </Grid>
- </Window>
|