FrameButton.xaml 887 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="comal.timesheets.FrameButton">
  5. <ContentView.Content>
  6. <Frame>
  7. <Grid x:Name="grid">
  8. <Grid.RowDefinitions>
  9. <RowDefinition Height="auto"/>
  10. <RowDefinition Height="auto" x:Name="row1"/>
  11. </Grid.RowDefinitions>
  12. <Button Grid.Row="0" Clicked="Button_Clicked" x:Name="button" Text="Choose"
  13. HorizontalOptions="FillAndExpand" VerticalOptions="Center" Margin="0" CornerRadius="5" FontAttributes="Bold"
  14. TextColor="White" BackgroundColor="#15c7c1" Padding="1"/>
  15. </Grid>
  16. </Frame>
  17. </ContentView.Content>
  18. </ContentView>