| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <mobile:MobilePage
- xmlns:local="clr-namespace:PRS.Mobile"
- 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"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
- x:Class="PRS.Mobile.TimeSheetNotePage">
-
- <mobile:MobilePage.PrimaryMenu>
- <mobile:MobileMenuButton Image="save" Clicked="Save_Clicked" />
- </mobile:MobilePage.PrimaryMenu>
-
- <mobile:MobilePage.PageContent>
-
- <mobile:MobileCard
- Margin="5"
- Padding="0">
- <Grid RowSpacing="0">
- <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"
- HorizontalTextAlignment="Start"
- FontAttributes="Italic"
- Padding="5"
- BackgroundColor="WhiteSmoke"
- TextColor="Gray"
- FontSize="Small"/>
- <BoxView
- x:Name="notesSeparator"
- Grid.Row="1"
- Grid.Column="0"
- BackgroundColor="Gray"
- Color="Gray"
- Margin="0" />
- <Editor
- Grid.Row="2"
- Grid.Column="0"
- x:Name="notesEdt"
- BackgroundColor="LightYellow"
- Keyboard="Default"
- TextColor="Black"
- FontSize="Small"/>
- </Grid>
- </mobile:MobileCard>
-
- </mobile:MobilePage.PageContent>
- </mobile:MobilePage>
|