feature: show change tooltip in INFORMATION page
Some checks are pending
Continuous Integration / Build (push) Waiting to run
Continuous Integration / Prepare version string (push) Waiting to run
Continuous Integration / Package (push) Blocked by required conditions

Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
leo 2025-06-12 11:42:58 +08:00
parent 79650d1851
commit cb6d6a233f
No known key found for this signature in database

View file

@ -51,6 +51,14 @@
<ListBox.ItemTemplate> <ListBox.ItemTemplate>
<DataTemplate DataType="m:Change"> <DataTemplate DataType="m:Change">
<Grid Background="Transparent" Height="24" ColumnDefinitions="36,*" ContextRequested="OnChangeContextRequested" DoubleTapped="OnChangeDoubleTapped"> <Grid Background="Transparent" Height="24" ColumnDefinitions="36,*" ContextRequested="OnChangeContextRequested" DoubleTapped="OnChangeDoubleTapped">
<ToolTip.Tip>
<TextBlock TextWrapping="Wrap">
<Run Text="{Binding Path, Mode=OneWay}"/>
<Run Text=" • " Foreground="Gray"/>
<Run Text="{Binding IndexDesc, Mode=OneWay}" Foreground="Gray"/>
</TextBlock>
</ToolTip.Tip>
<v:ChangeStatusIcon Grid.Column="0" <v:ChangeStatusIcon Grid.Column="0"
Width="14" Height="14" Width="14" Height="14"
HorizontalAlignment="Left" HorizontalAlignment="Left"