1234567891011121314151617181920212223242526272829303132 |
- <?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"
- xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
-
- material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
-
- x:Class="comal.timesheets.TimeSheetNotePage"
- BackgroundColor="Gray">
-
- <timesheets:BasePage.PageContent>
-
- <Frame x:Name="clockOffFrame" CornerRadius="10" BorderColor="Black" Margin="10,10,10,20" Padding="0">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="1"/>
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Label x:Name="notesLbl" Grid.Row="0" Grid.Column="0" VerticalTextAlignment="End" HorizontalTextAlignment="Center" FontAttributes="Bold" Margin="0,5,0,5"/>
- <BoxView Grid.Row="1" Grid.Column="0" BackgroundColor="Black" Color="Black" />
- <Editor Grid.Row="2" Grid.Column="0" x:Name="notesEdt" BackgroundColor="Transparent" Keyboard="Default" TextColor="Black"/>
- </Grid>
- </Frame>
-
- </timesheets:BasePage.PageContent>
- </timesheets:BasePage>
|