Advertisement
Guest User

Untitled

a guest
Jul 9th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <Grid x:Name="MainGrid" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="4*"/>
  4. <RowDefinition Height="6*"/>
  5. </Grid.RowDefinitions>
  6.  
  7.  
  8. <Grid x:Name="DigitalDisplayGrid" Grid.Row="0" BindableLayout.ItemsSource="{Binding Timers, Mode=TwoWay}" HorizontalOptions="CenterAndExpand" VerticalOptions="FillAndExpand">
  9.  
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="2.5*"/>
  12. <RowDefinition Height="2.5*"/>
  13. <RowDefinition Height="2.5*"/>
  14. <RowDefinition Height="2.5*"/>
  15. </Grid.RowDefinitions>
  16.  
  17. <BindableLayout.ItemTemplate>
  18. <DataTemplate>
  19.  
  20. <gauge:SfDigitalGauge Value="{Binding DigitalDisplayString, Mode=TwoWay}"
  21. Grid.Row="{Binding Row}"
  22. DisabledSegmentAlpha="25" DisabledSegmentColor="LightGray"
  23. VerticalOptions="FillAndExpand" HorizontalOptions="CenterAndExpand"
  24. CharacterType="EightCrossEightDotMatrix"
  25. CharacterStrokeColor="{Binding ColorDisplay, Mode=TwoWay}"
  26. BackgroundColor="#686261"/>
  27. </DataTemplate>
  28. </BindableLayout.ItemTemplate>
  29.  
  30.  
  31. </Grid>
  32. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement