47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<Window x:Class="InfosysPublisher.WinLogin"
|
|
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:InfosysPublisher"
|
|
mc:Ignorable="d"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="WinLogin" Height="350" Width="500">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="50"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="25"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="10"/>
|
|
</Grid.RowDefinitions>
|
|
<Viewbox Grid.Row="1">
|
|
<TextBlock>Infosys-Publisher</TextBlock></Viewbox>
|
|
|
|
<Viewbox Grid.Row="3">
|
|
<TextBlock>Username:</TextBlock>
|
|
</Viewbox>
|
|
<Viewbox Grid.Row="4">
|
|
<TextBox Name="tbUsername" Width="300"></TextBox>
|
|
</Viewbox>
|
|
|
|
<Viewbox Grid.Row="5">
|
|
<TextBlock>Password:</TextBlock>
|
|
</Viewbox>
|
|
<Viewbox Grid.Row="6">
|
|
<PasswordBox Name="tbPassword" Width="300"></PasswordBox>
|
|
</Viewbox>
|
|
|
|
<Button Grid.Row="8" Width="300" Click="Login_OnClick">
|
|
<Viewbox>
|
|
<TextBlock>Login</TextBlock>
|
|
</Viewbox>
|
|
</Button>
|
|
</Grid>
|
|
</Window>
|