You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.2 KiB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="GMCabsDriverAssistantSolution.Views.CancelledBookingPage"
  5. Title="{Binding Title}">
  6. <ContentPage.Content>
  7. <StackLayout BackgroundColor="#DCDCDC">
  8. <Label
  9. Text="Booking Cancelled"
  10. TextColor="Black"
  11. FontSize="26"
  12. Margin="0,90,0,0"
  13. HorizontalTextAlignment="Center"
  14. HorizontalOptions="CenterAndExpand" />
  15. <Label
  16. Text="{Binding PickUpAddress, StringFormat='{0} to'}"
  17. TextColor="Black"
  18. FontSize="26"
  19. Margin="0,20,0,0"
  20. FontAttributes="Bold"
  21. HorizontalTextAlignment="Center"
  22. HorizontalOptions="CenterAndExpand" />
  23. <Label
  24. Text="{Binding DropUpAddress}"
  25. TextColor="Black"
  26. FontSize="26"
  27. FontAttributes="Bold"
  28. HorizontalTextAlignment="Center"
  29. HorizontalOptions="CenterAndExpand"/>
  30. <Label
  31. Text="This booking has been cancelled."
  32. TextColor="Black"
  33. Padding="20"
  34. FontSize="24"
  35. HorizontalTextAlignment="Center"
  36. HorizontalOptions="CenterAndExpand"/>
  37. <Label
  38. Text="Please do not drive to the pickup location"
  39. TextColor="Black"
  40. FontSize="24"
  41. Padding="20"
  42. HorizontalTextAlignment="Center"
  43. HorizontalOptions="CenterAndExpand" />
  44. <Button
  45. Margin="40,20,40,30"
  46. Text="OK"
  47. Clicked="OnCancelledOkClicked"
  48. FontSize="20"
  49. VerticalOptions="EndAndExpand"/>
  50. </StackLayout>
  51. </ContentPage.Content>
  52. </ContentPage>