summaryrefslogtreecommitdiff
path: root/windows/WinUI/OnboardProcess/LogIn.xaml
diff options
context:
space:
mode:
authorGrant Limberg <grant.limberg@zerotier.com>2019-02-05 11:47:37 -0800
committerGrant Limberg <grant.limberg@zerotier.com>2019-02-05 11:47:37 -0800
commita4b19173618756e1d0cee3339e6cde734d13abb7 (patch)
tree37d6ddc5f231d849bf31b31a3993be89bb5c7fd2 /windows/WinUI/OnboardProcess/LogIn.xaml
parent5b1ef2fb03feade376663862950ef9655d338bae (diff)
downloadinfinitytier-a4b19173618756e1d0cee3339e6cde734d13abb7.tar.gz
infinitytier-a4b19173618756e1d0cee3339e6cde734d13abb7.zip
Fixed a bug where UI elements were attempting to be updated in a background thread.
Also code cleanup & removed confusing startup UI
Diffstat (limited to 'windows/WinUI/OnboardProcess/LogIn.xaml')
-rw-r--r--windows/WinUI/OnboardProcess/LogIn.xaml35
1 files changed, 0 insertions, 35 deletions
diff --git a/windows/WinUI/OnboardProcess/LogIn.xaml b/windows/WinUI/OnboardProcess/LogIn.xaml
deleted file mode 100644
index 501f7e0f..00000000
--- a/windows/WinUI/OnboardProcess/LogIn.xaml
+++ /dev/null
@@ -1,35 +0,0 @@
-<UserControl x:Class="WinUI.OnboardProcess.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:WinUI.OnboardProcess"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="300">
- <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto"/>
- <ColumnDefinition Width="Auto"/>
- </Grid.ColumnDefinitions>
-
- <Label Grid.Column="0" Grid.Row="0" HorizontalAlignment="Right" Margin="10">Email Address:</Label>
- <TextBox x:Name="EmailAddressTextBox" Grid.Column="1" Grid.Row="0" MinWidth="150" Margin="10"></TextBox>
-
- <Label Grid.Column="0" Grid.Row="1" HorizontalAlignment="Right" Margin="10">Password:</Label>
- <PasswordBox x:Name="PasswordTextBox" Grid.Column="1" Grid.Row="1" PasswordChar="*" Margin="10"/>
-
- <Button Grid.Column="1" Grid.Row="2" Click="LoginButton_Click" Content="LogIn" Background="#FFFFB354" Width="90" Margin="10" HorizontalAlignment="Right"/>
-
- <Label x:Name="ErrorText" Grid.Row="3" Grid.ColumnSpan="2" HorizontalAlignment="Center"></Label>
- <Label Grid.Row="4"></Label>
- <Button Grid.Column="0" Grid.Row="5" Background="#FFFFB354" Click="BackButton_Click">Go Back</Button>
- </Grid>
-</UserControl>