cfb1b99162
- 常驻 Host:无主窗口保活 + 系统托盘菜单 - Toast 弹窗:堆叠 / 自动消失 / 悬停暂停 / 淡入淡出 / 点击关闭 - Sticky 常驻弹窗与 InputMode 边框配色 - 跨虚拟桌面显示(源生成 COM PinView,AOT 友好) - 设置窗口(Semi + Ursa)+ JSON 源生成持久化 - AOT 准备:IsAotCompatible 0 警告
59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:vm="clr-namespace:Notify.ViewModels"
|
|
x:Class="Notify.Views.ToastWindow"
|
|
x:DataType="vm:ToastViewModel"
|
|
Width="340"
|
|
Height="92"
|
|
CanResize="False"
|
|
ShowInTaskbar="False"
|
|
ShowActivated="False"
|
|
Topmost="True"
|
|
WindowDecorations="None"
|
|
Background="Transparent"
|
|
TransparencyLevelHint="Transparent">
|
|
|
|
<Border x:Name="Root"
|
|
Background="#FF2B2B2B"
|
|
CornerRadius="10"
|
|
BorderThickness="2"
|
|
BorderBrush="#FF4B64B2"
|
|
BoxShadow="0 6 24 0 #80000000"
|
|
Padding="14"
|
|
PointerEntered="OnPointerEntered"
|
|
PointerExited="OnPointerExited"
|
|
PointerPressed="OnBodyPressed">
|
|
<Grid ColumnDefinitions="Auto,*,Auto" VerticalAlignment="Center">
|
|
|
|
<Image Grid.Column="0"
|
|
Width="44" Height="44"
|
|
VerticalAlignment="Center"
|
|
Source="/Assets/claude.ico" />
|
|
|
|
<StackPanel Grid.Column="1" Margin="12,0,8,0" VerticalAlignment="Center" Spacing="2">
|
|
<TextBlock Text="{Binding Title}"
|
|
FontWeight="Bold"
|
|
FontSize="14"
|
|
Foreground="#FFFFFFFF"
|
|
TextTrimming="CharacterEllipsis" />
|
|
<TextBlock Text="{Binding Message}"
|
|
FontSize="12"
|
|
Foreground="#FFCCCCCC"
|
|
TextWrapping="Wrap"
|
|
MaxLines="2"
|
|
TextTrimming="CharacterEllipsis" />
|
|
</StackPanel>
|
|
|
|
<Button Grid.Column="2"
|
|
Content="✕"
|
|
VerticalAlignment="Top"
|
|
Padding="6,2"
|
|
FontSize="12"
|
|
Foreground="#FF888888"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
Click="OnCloseClick" />
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|