SistemaEscolar: PaginaListaEscuelas.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="SistemaEscolar.Paginas.PaginaListaEscuelas"> | |
<ContentPage.Content> | |
<StackLayout BackgroundColor="White"> | |
<Label Text="Lista de Escuelas" TextColor="Black" FontSize="Large" Margin="15"/> | |
<ActivityIndicator x:Name="indicator" Color="Green" VerticalOptions="Center" HorizontalOptions="Center"/> | |
<ListView x:Name="lsvEscuelas" ItemSelected="lsvEscuelas_ItemSelected" HasUnevenRows="True"> | |
<ListView.ItemTemplate> | |
<DataTemplate> | |
<ViewCell> | |
<Label Text="{Binding Nombre}" FontSize="Medium" | |
LineBreakMode="WordWrap" TextColor="Black" Margin="10"/> | |
</ViewCell> | |
</DataTemplate> | |
</ListView.ItemTemplate> | |
</ListView> | |
</StackLayout> | |
</ContentPage.Content> | |
<ContentPage.ToolbarItems> | |
<ToolbarItem x:Name="btnAgregar" Text="Agregar" Order="Primary" Priority="0" Clicked="btnAgregar_Clicked"/> | |
</ContentPage.ToolbarItems> | |
</ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment