Guest User

Untitled

a guest
Jan 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <ContentView
  2. <ContentView.ControlTemplate>
  3. <ControlTemplate>
  4. <telerikPrimitives:RadBorder CornerRadius="2" BackgroundColor="{TemplateBinding BackgroundColor}">
  5. <Grid Margin="{TemplateBinding Padding}">
  6. <Grid.RowDefinitions>
  7. <RowDefinition Height="Auto" />
  8. <RowDefinition Height="*" />
  9. <RowDefinition Height="Auto" />
  10. </Grid.RowDefinitions>
  11. <Label Text="{TemplateBinding Title}" FontSize="Large" />
  12. <ContentPresenter Grid.Row="1" Margin="0,10" />
  13. <StackLayout Grid.Row="2" Orientation="Horizontal" HorizontalOptions="End">
  14. <telerikInput:RadButton Text="Cancel" Clicked="OnCancel" />
  15. <telerikInput:RadButton Text="OK" Clicked="OnAccept" />
  16. </StackLayout>
  17. </Grid>
  18. </telerikPrimitives:RadBorder>
  19. </ControlTemplate>
  20. </ContentView.ControlTemplate>
  21. </ContentView>
Add Comment
Please, Sign In to add comment