mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
190 lines
9.2 KiB
XML
190 lines
9.2 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:fi="using:FluentIcons.Avalonia"
|
|
mc:Ignorable="d"
|
|
d:DesignWidth="640"
|
|
d:DesignHeight="320"
|
|
x:Class="LanMountainDesktop.Views.Components.BaiduHotSearchWidget">
|
|
|
|
<Border x:Name="RootBorder"
|
|
CornerRadius="34"
|
|
Background="Transparent"
|
|
ClipToBounds="True"
|
|
BorderThickness="0"
|
|
Padding="0">
|
|
<Grid>
|
|
<Border x:Name="CardBorder"
|
|
Background="#FCFCFD"
|
|
CornerRadius="34"
|
|
BorderBrush="Transparent"
|
|
BorderThickness="0"
|
|
Padding="16,14,16,14">
|
|
<Grid x:Name="ContentGrid"
|
|
RowDefinitions="Auto,Auto,Auto,Auto,Auto"
|
|
RowSpacing="6">
|
|
<Grid x:Name="HeaderGrid"
|
|
Grid.Row="0"
|
|
ColumnDefinitions="*,Auto"
|
|
ColumnSpacing="10">
|
|
<TextBlock x:Name="BrandTextBlock"
|
|
Text="百度热搜"
|
|
Foreground="#2932E1"
|
|
FontSize="24"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"
|
|
MaxLines="1"
|
|
TextTrimming="CharacterEllipsis" />
|
|
|
|
<Button x:Name="RefreshButton"
|
|
Grid.Column="1"
|
|
Width="34"
|
|
Height="34"
|
|
CornerRadius="17"
|
|
Background="#EFF1F5"
|
|
BorderBrush="Transparent"
|
|
BorderThickness="0"
|
|
Padding="0"
|
|
Focusable="False"
|
|
ToolTip.Tip="刷新"
|
|
Click="OnRefreshButtonClick">
|
|
<fi:SymbolIcon x:Name="RefreshGlyphIcon"
|
|
Symbol="ArrowClockwise"
|
|
IconVariant="Regular"
|
|
Foreground="#5E6671"
|
|
FontSize="16"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
</Button>
|
|
</Grid>
|
|
|
|
<Border x:Name="HotItem1Host"
|
|
Grid.Row="1"
|
|
Tag="0"
|
|
Background="Transparent"
|
|
Padding="0,2"
|
|
PointerPressed="OnHotItemPointerPressed">
|
|
<Grid x:Name="HotItem1Grid"
|
|
ColumnDefinitions="Auto,*"
|
|
ColumnSpacing="8">
|
|
<TextBlock x:Name="HotItem1IndexTextBlock"
|
|
Text="1"
|
|
Foreground="#2932E1"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
TextAlignment="Right" />
|
|
<TextBlock x:Name="HotItem1TextBlock"
|
|
Grid.Column="1"
|
|
Text="热搜内容"
|
|
Foreground="#202327"
|
|
FontSize="28"
|
|
FontWeight="SemiBold"
|
|
TextTrimming="CharacterEllipsis"
|
|
MaxLines="1"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border x:Name="HotItem2Host"
|
|
Grid.Row="2"
|
|
Tag="1"
|
|
Background="Transparent"
|
|
Padding="0,2"
|
|
PointerPressed="OnHotItemPointerPressed">
|
|
<Grid x:Name="HotItem2Grid"
|
|
ColumnDefinitions="Auto,*"
|
|
ColumnSpacing="8">
|
|
<TextBlock x:Name="HotItem2IndexTextBlock"
|
|
Text="2"
|
|
Foreground="#2932E1"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
TextAlignment="Right" />
|
|
<TextBlock x:Name="HotItem2TextBlock"
|
|
Grid.Column="1"
|
|
Text="热搜内容"
|
|
Foreground="#202327"
|
|
FontSize="28"
|
|
FontWeight="SemiBold"
|
|
TextTrimming="CharacterEllipsis"
|
|
MaxLines="1"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border x:Name="HotItem3Host"
|
|
Grid.Row="3"
|
|
Tag="2"
|
|
Background="Transparent"
|
|
Padding="0,2"
|
|
PointerPressed="OnHotItemPointerPressed">
|
|
<Grid x:Name="HotItem3Grid"
|
|
ColumnDefinitions="Auto,*"
|
|
ColumnSpacing="8">
|
|
<TextBlock x:Name="HotItem3IndexTextBlock"
|
|
Text="3"
|
|
Foreground="#2932E1"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
TextAlignment="Right" />
|
|
<TextBlock x:Name="HotItem3TextBlock"
|
|
Grid.Column="1"
|
|
Text="热搜内容"
|
|
Foreground="#202327"
|
|
FontSize="28"
|
|
FontWeight="SemiBold"
|
|
TextTrimming="CharacterEllipsis"
|
|
MaxLines="1"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border x:Name="HotItem4Host"
|
|
Grid.Row="4"
|
|
Tag="3"
|
|
Background="Transparent"
|
|
Padding="0,2"
|
|
PointerPressed="OnHotItemPointerPressed">
|
|
<Grid x:Name="HotItem4Grid"
|
|
ColumnDefinitions="Auto,*"
|
|
ColumnSpacing="8">
|
|
<TextBlock x:Name="HotItem4IndexTextBlock"
|
|
Text="4"
|
|
Foreground="#2932E1"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
TextAlignment="Right" />
|
|
<TextBlock x:Name="HotItem4TextBlock"
|
|
Grid.Column="1"
|
|
Text="热搜内容"
|
|
Foreground="#202327"
|
|
FontSize="28"
|
|
FontWeight="SemiBold"
|
|
TextTrimming="CharacterEllipsis"
|
|
MaxLines="1"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
|
|
<TextBlock x:Name="StatusTextBlock"
|
|
IsVisible="False"
|
|
Text="Loading"
|
|
Foreground="#6A6F77"
|
|
FontSize="16"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Border>
|
|
</UserControl>
|