Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created April 28, 2018 14:25
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/08daf40f537603b2bb3d6e52595cf5fd to your computer and use it in GitHub Desktop.
Save icebeam7/08daf40f537603b2bb3d6e52595cf5fd to your computer and use it in GitHub Desktop.
FaceLoginApp: PaginaRegistro.xaml
<?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="FaceLoginApp.Paginas.PaginaRegistro">
<ContentPage.Content>
<StackLayout BackgroundColor="White">
<Label Text="Registrar usuario" TextColor="Black" FontSize="Large" Margin="15"/>
<StackLayout Padding="15">
<Label Text="Nombre: " TextColor="Blue" FontSize="Large"/>
<Entry x:Name="txtNombre" TextColor="White" Text="{Binding Nombre}"
Placeholder="Ingresa el nombre del empleado"
PlaceholderColor="LightGray" BackgroundColor="Black" FontSize="Medium"/>
</StackLayout>
<StackLayout Padding="15" Orientation="Horizontal">
<Image x:Name="imagen1" WidthRequest="200" HeightRequest="200" Margin="10" />
<Image x:Name="imagen2" WidthRequest="200" HeightRequest="200" Margin="10" />
<Image x:Name="imagen3" WidthRequest="200" HeightRequest="200" Margin="10" />
</StackLayout>
<ActivityIndicator x:Name="indicator" Color="Green" VerticalOptions="Center" HorizontalOptions="Center"/>
</StackLayout>
</ContentPage.Content>
<ContentPage.ToolbarItems>
<ToolbarItem x:Name="btnTomarFoto" Text="Foto" Order="Primary" Priority="0" Clicked="btnTomarFoto_Clicked"/>
<ToolbarItem x:Name="btnRegistrar" Text="Registrar" Order="Primary" Priority="0" Clicked="btnRegistrar_Clicked"/>
</ContentPage.ToolbarItems>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment