UniversalFedi/WMstodon/SelectInstancePage.xaml
2023-02-04 23:45:16 -07:00

18 lines
1.2 KiB
XML

<Page
x:Class="WMstodon.SelectInstancePage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:WMstodon"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Loaded="Page_Loaded">
<Grid>
<TextBox x:Name="InstanceURLTextBox" Margin="10,0" TextWrapping="Wrap" Text="" VerticalAlignment="Center" PlaceholderText="Enter your Instance URL"/>
<Button x:Name="NextButton" Content="Next" HorizontalAlignment="Right" Margin="0,75,10,0" VerticalAlignment="Center" Width="75" Click="NextButton_Click"/>
<TextBlock x:Name="GreetingTextBlock" HorizontalAlignment="Center" Margin="0,0,0,200" TextWrapping="Wrap" Text="How do you do?" VerticalAlignment="Center" FontSize="24"/>
<TextBlock x:Name="ErrorTextBlock" HorizontalAlignment="Left" Margin="10,150,10,0" TextWrapping="Wrap" Text="" VerticalAlignment="Center" FocusVisualPrimaryBrush="Red" Foreground="Red"/>
</Grid>
</Page>