| 1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8" ?>
- <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets"
- xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
-
- x:Class="comal.timesheets.DigitalFormHost">
- <timesheets:BasePage.ActionButtons>
- <ImageButton x:Name="_saveProgress" Source="floppydisk" Clicked="SaveProgressBtn_Clicked" />
- <ImageButton x:Name="_saveComplete" Source="tick" Clicked="SaveBtn_Clicked"/>
- </timesheets:BasePage.ActionButtons>
- <timesheets:BasePage.PageContent>
- <Grid>
- <Grid.RowDefinitions>
- <!-- <RowDefinition Height="auto"/> -->
- <RowDefinition Height="auto"/>
- </Grid.RowDefinitions>
- <!-- <Label x:Name="titleLbl" Grid.Row="0" Margin="5" FontAttributes="Bold" FontSize="Medium" HorizontalTextAlignment="Center" HorizontalOptions="FillAndExpand"/> -->
- <!--scrollview to display form-->
- <ScrollView x:Name="formViewerScroller" Grid.Row="0" Margin="5" Padding="5"/>
- <Button Grid.Row="2" Margin="0" TextColor="White" BackgroundColor="#15C7C1" CornerRadius="0" IsVisible="false" FontSize="Medium" HeightRequest="45"
- Text="View Attached Document" FontAttributes="Bold" HorizontalOptions="FillAndExpand" VerticalOptions="End"
- Clicked="DocumentBtn_Clicked" x:Name="documentBtn"/>
- </Grid>
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|