1234567891011121314151617181920212223242526272829303132333435 |
- <Window x:Class="MyMoviesWPF.MVVM.View.LogInView"
- 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:MyMoviesWPF.MVVM.View"
- mc:Ignorable="d" ResizeMode="NoResize"
- Title="LogInView" Height="600" Width="450">
- <Grid>
- <StackPanel HorizontalAlignment="Center" Margin="0,0,0,0" Orientation="Vertical" VerticalAlignment="Center">
- <TextBox Width="300" Height="52" Margin="0, 10, 0, 10"
- Text="{Binding EnteredLogin}" FontFamily="Segoe UI"
- />
- <PasswordBox
- x:Name="Password"
- Width="300" Height="52" Margin="0, 50, 0, 0"
- />
- <Button
- Content="Sign In"
- FontFamily="Segoe UI" FontSize="20" FontStyle="Normal" FontWeight="Normal" Foreground="White"
- Command="{Binding SignIn}" CommandParameter="{Binding ElementName=Password}"
- Width="200" Height="32" Margin="0, 50, 0, 00"
- />
- </StackPanel>
- </Grid>
- </Window>
|