Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 22, 2018 22:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/5708495c192c54744e77586173e045a6 to your computer and use it in GitHub Desktop.
Save icebeam7/5708495c192c54744e77586173e045a6 to your computer and use it in GitHub Desktop.
MyStore.EmployeesApp: LoginPage.xaml.cs
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MyStore.EmployeesApp.Pages.LoginPage">
<ContentPage.Content>
<StackLayout BackgroundColor="White">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="3*"/>
</Grid.ColumnDefinitions>
<Label Text="UserName: " Grid.Row="0" Grid.Column="0"
HorizontalOptions="Start" TextColor="Black"/>
<Entry Placeholder="User Name" x:Name="UserNameEntry"
Grid.Row="0" Grid.Column="1" WidthRequest="300"
HorizontalOptions="Start" TextColor="Black"
BackgroundColor="LightGreen"/>
<Label Text="Password: " Grid.Row="1" Grid.Column="0"
HorizontalOptions="Start" TextColor="Black"/>
<Entry x:Name="PasswordEntry"
Grid.Row="1" Grid.Column="1"
IsPassword="True" WidthRequest="300"
HorizontalOptions="Start" TextColor="Black"
BackgroundColor="LightGreen"/>
<Button x:Name="SignInButton" Text="Sign In"
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
BackgroundColor="LightBlue" TextColor="Black"
Clicked="SignInButton_Clicked"/>
</Grid>
</StackLayout>
</ContentPage.Content>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment