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.
39 lines
1.7 KiB
39 lines
1.7 KiB
|
1 week ago
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
|
x:Class="SunlightAggregationTerminal.NotificationView.NoticePage"
|
||
|
|
Title="通知">
|
||
|
|
<CollectionView x:Name="CardCollectionView"
|
||
|
|
ItemsSource="{Binding NoticeItems}"
|
||
|
|
RemainingItemsThreshold="5"
|
||
|
|
RemainingItemsThresholdReached="CardCollectionView_RemainingItemsThresholdReached">
|
||
|
|
<!-- 保持滚动条 -->
|
||
|
|
<CollectionView.ItemTemplate>
|
||
|
|
<DataTemplate>
|
||
|
|
<!-- 这里定义单个卡片的 UI 结构 -->
|
||
|
|
<Border BackgroundColor="White"
|
||
|
|
Stroke="#CCCCCC"
|
||
|
|
StrokeThickness="1"
|
||
|
|
Margin="10,0,10,10"
|
||
|
|
StrokeShape="RoundRectangle 10">
|
||
|
|
<Grid Padding="15">
|
||
|
|
<VerticalStackLayout>
|
||
|
|
<Label Text="{Binding Title}"
|
||
|
|
FontAttributes="Bold"
|
||
|
|
FontSize="22"
|
||
|
|
TextColor="Black"/>
|
||
|
|
<Label Text="{Binding Time}"
|
||
|
|
FontSize="14"
|
||
|
|
TextColor="Black"
|
||
|
|
LineBreakMode="WordWrap"/>
|
||
|
|
<Label Text="{Binding Content}"
|
||
|
|
FontSize="16"
|
||
|
|
TextColor="Gray"
|
||
|
|
LineBreakMode="WordWrap"/>
|
||
|
|
</VerticalStackLayout>
|
||
|
|
</Grid>
|
||
|
|
</Border>
|
||
|
|
</DataTemplate>
|
||
|
|
</CollectionView.ItemTemplate>
|
||
|
|
</CollectionView>
|
||
|
|
</ContentPage>
|