MultiButtonScroller.xaml 1.2 KB

1234567891011121314151617181920212223242526
  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.CustomControls.MultiButtonScroller">
  5. <ContentView.Content>
  6. <Frame Padding="0" CornerRadius="10" Margin="0" BorderColor="#087f23" HeightRequest="70" HasShadow="False">
  7. <Grid x:Name="grid">
  8. <Grid.RowDefinitions>
  9. <RowDefinition Height="auto"/>
  10. </Grid.RowDefinitions>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="auto"/>
  13. <ColumnDefinition Width="*"/>
  14. <ColumnDefinition Width="auto"/>
  15. </Grid.ColumnDefinitions>
  16. <ScrollView Grid.Row="0" Grid.Column="1" VerticalOptions="FillAndExpand"
  17. Orientation="Horizontal" x:Name="ImageScroller" Padding="0" Margin="0">
  18. <StackLayout x:Name="buttonsStackLayout" Orientation="Horizontal" VerticalOptions="FillAndExpand"/>
  19. </ScrollView>
  20. </Grid>
  21. </Frame>
  22. </ContentView.Content>
  23. </ContentView>