vlc fully implemented

This commit is contained in:
Elias Quinn
2025-06-11 19:01:09 +01:00
parent 7e2c8d971d
commit c8906c1471
335 changed files with 6576 additions and 333 deletions

View File

@@ -1,12 +1,36 @@
<Window x:Class="ShadowStream.LogIn"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ShadowStream"
mc:Ignorable="d"
Title="LogIn" Height="450" Width="800">
<Grid>
Title="Log In" Height="300" Width="400"
WindowStartupLocation="CenterScreen"
ResizeMode="NoResize">
<Grid Margin="20">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Text="Please sign in"
FontSize="20"
FontWeight="Bold"
HorizontalAlignment="Center"
Margin="0,0,0,20"/>
<StackPanel Grid.Row="1" Orientation="Vertical" Margin="0,0,0,10">
<TextBlock Text="Username" Margin="0,0,0,5"/>
<TextBox x:Name="UsernameBox" Width="250" Height="25"/>
</StackPanel>
<StackPanel Grid.Row="2" Orientation="Vertical" Margin="0,0,0,20">
<TextBlock Text="Password" Margin="0,0,0,5"/>
<PasswordBox x:Name="PasswordBox" Width="250" Height="25"/>
</StackPanel>
<Button Grid.Row="3" Content="Log In"
Width="100" Height="30"
HorizontalAlignment="Center"
Click="LogIn_Click"/>
</Grid>
</Window>
</Window>