ModernMyTripsView.xaml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.ModernMyTripsView">
  4. <ScrollViewer HorizontalScrollBarVisibility="Disabled">
  5. <StackPanel>
  6. <!-- Header -->
  7. <Border Background="#101f22" Padding="16,20,16,20">
  8. <StackPanel Spacing="4">
  9. <TextBlock Text="My Trips" FontSize="24" FontWeight="Bold"
  10. Foreground="White"/>
  11. <TextBlock Text="4 adventures · 4 countries"
  12. FontSize="13" Foreground="#0dccf2"/>
  13. </StackPanel>
  14. </Border>
  15. <!-- Trip cards wrap panel -->
  16. <Border Padding="10,10,2,10">
  17. <WrapPanel HorizontalAlignment="Stretch">
  18. <!-- Tokyo Night Life -->
  19. <Border Width="170" Height="180" CornerRadius="10" ClipToBounds="True"
  20. Background="#8a9ba3" Margin="0,0,8,8">
  21. <Grid>
  22. <Image Source="avares://ControlCatalog/Assets/ModernApp/exp_tokyo.jpg"
  23. Stretch="UniformToFill"/>
  24. <Border>
  25. <Border.Background>
  26. <LinearGradientBrush StartPoint="0%,50%" EndPoint="0%,100%">
  27. <GradientStop Color="#00000000" Offset="0"/>
  28. <GradientStop Color="#C8000000" Offset="1"/>
  29. </LinearGradientBrush>
  30. </Border.Background>
  31. </Border>
  32. <StackPanel VerticalAlignment="Bottom" Margin="10,0,10,10" Spacing="1">
  33. <TextBlock Text="Tokyo Night Life" Foreground="White"
  34. FontSize="13" FontWeight="SemiBold"
  35. TextWrapping="Wrap"/>
  36. <TextBlock Text="Tokyo, JP · Mar 2025"
  37. Foreground="White" FontSize="10" Opacity="0.75"/>
  38. </StackPanel>
  39. </Grid>
  40. </Border>
  41. <!-- Angkor Wat Sunrise -->
  42. <Border Width="170" Height="180" CornerRadius="10" ClipToBounds="True"
  43. Background="#8a9ba3" Margin="0,0,8,8">
  44. <Grid>
  45. <Image Source="avares://ControlCatalog/Assets/ModernApp/exp_angkor.jpg"
  46. Stretch="UniformToFill"/>
  47. <Border>
  48. <Border.Background>
  49. <LinearGradientBrush StartPoint="0%,50%" EndPoint="0%,100%">
  50. <GradientStop Color="#00000000" Offset="0"/>
  51. <GradientStop Color="#C8000000" Offset="1"/>
  52. </LinearGradientBrush>
  53. </Border.Background>
  54. </Border>
  55. <StackPanel VerticalAlignment="Bottom" Margin="10,0,10,10" Spacing="1">
  56. <TextBlock Text="Angkor Wat Sunrise" Foreground="White"
  57. FontSize="13" FontWeight="SemiBold"
  58. TextWrapping="Wrap"/>
  59. <TextBlock Text="Siem Reap, KH · Jan 2025"
  60. Foreground="White" FontSize="10" Opacity="0.75"/>
  61. </StackPanel>
  62. </Grid>
  63. </Border>
  64. <!-- Mount Peak Hike -->
  65. <Border Width="170" Height="180" CornerRadius="10" ClipToBounds="True"
  66. Background="#8a9ba3" Margin="0,0,8,8">
  67. <Grid>
  68. <Image Source="avares://ControlCatalog/Assets/ModernApp/dest_alps.jpg"
  69. Stretch="UniformToFill"/>
  70. <Border>
  71. <Border.Background>
  72. <LinearGradientBrush StartPoint="0%,50%" EndPoint="0%,100%">
  73. <GradientStop Color="#00000000" Offset="0"/>
  74. <GradientStop Color="#C8000000" Offset="1"/>
  75. </LinearGradientBrush>
  76. </Border.Background>
  77. </Border>
  78. <StackPanel VerticalAlignment="Bottom" Margin="10,0,10,10" Spacing="1">
  79. <TextBlock Text="Mount Peak Hike" Foreground="White"
  80. FontSize="13" FontWeight="SemiBold"
  81. TextWrapping="Wrap"/>
  82. <TextBlock Text="Swiss Alps, CH · Dec 2024"
  83. Foreground="White" FontSize="10" Opacity="0.75"/>
  84. </StackPanel>
  85. </Grid>
  86. </Border>
  87. <!-- Forest Trek -->
  88. <Border Width="170" Height="180" CornerRadius="10" ClipToBounds="True"
  89. Background="#8a9ba3" Margin="0,0,8,8">
  90. <Grid>
  91. <Image Source="avares://ControlCatalog/Assets/ModernApp/dest_forest.jpg"
  92. Stretch="UniformToFill"/>
  93. <Border>
  94. <Border.Background>
  95. <LinearGradientBrush StartPoint="0%,50%" EndPoint="0%,100%">
  96. <GradientStop Color="#00000000" Offset="0"/>
  97. <GradientStop Color="#C8000000" Offset="1"/>
  98. </LinearGradientBrush>
  99. </Border.Background>
  100. </Border>
  101. <StackPanel VerticalAlignment="Bottom" Margin="10,0,10,10" Spacing="1">
  102. <TextBlock Text="Forest Trek" Foreground="White"
  103. FontSize="13" FontWeight="SemiBold"
  104. TextWrapping="Wrap"/>
  105. <TextBlock Text="Oregon, US · Oct 2024"
  106. Foreground="White" FontSize="10" Opacity="0.75"/>
  107. </StackPanel>
  108. </Grid>
  109. </Border>
  110. </WrapPanel>
  111. </Border>
  112. </StackPanel>
  113. </ScrollViewer>
  114. </UserControl>