TextViewer.xaml 427 B

123456789101112
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="comal.timesheets.TextViewer">
  5. <ContentPage.Content>
  6. <ScrollView>
  7. <StackLayout>
  8. <Label x:Name="textLbl"/>
  9. </StackLayout>
  10. </ScrollView>
  11. </ContentPage.Content>
  12. </ContentPage>