nove verzije

This commit is contained in:
David Štaleker
2024-08-02 11:00:59 +02:00
parent edab522e0e
commit ca229fbd89
8 changed files with 491 additions and 157 deletions

View File

@@ -0,0 +1,46 @@
<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>