Purchases.xaml 762 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <timesheets:BasePage xmlns:timesheets="clr-namespace:comal.timesheets" xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:material="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  5. material:MaterialNavigationPage.AppBarTitleTextFontSize="16.0"
  6. x:Class="comal.timesheets.Purchases"
  7. >
  8. <timesheets:BasePage.PageContent>
  9. <StackLayout>
  10. <StackLayout x:Name="Cards" Margin="10"/>
  11. <material:MaterialButton x:Name="NewPurch" Margin="10,0,10,10" Text="New Purchase" Clicked="NewPurchase_Clicked" IsVisible="False" />
  12. </StackLayout>
  13. </timesheets:BasePage.PageContent>
  14. </timesheets:BasePage>