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.
23 lines
1.2 KiB
23 lines
1.2 KiB
<Window x:Class="AIK.Views.MenuPages.CommonPage.LightTipWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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:local="clr-namespace:AIK.Views.MenuPages.CommonPage"
|
|
mc:Ignorable="d"
|
|
Title="LightTipWindow"
|
|
Width="300" Height="65" WindowStyle="None" AllowsTransparency="True"
|
|
Background="Transparent" Topmost="True" WindowStartupLocation="CenterOwner">
|
|
<Grid>
|
|
<!-- 半透明背景 -->
|
|
<Border CornerRadius="35" Background="#E6333333">
|
|
<Grid Margin="10">
|
|
<!-- 图标 + 文本 -->
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
|
<TextBlock Text="" FontSize="18" Foreground="White" FontFamily="{StaticResource Iconfont}" VerticalAlignment="Center"></TextBlock>
|
|
<TextBlock Text="{Binding Message}" FontSize="16" Foreground="White" VerticalAlignment="Center"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|
|
|