4 Star 37 Fork 4

空山明月/中书君-Rime管理器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ToolTipStyle.xaml 3.01 KB
一键复制 编辑 原始数据 按行查看 历史
shiqiqi 提交于 11个月前 . :art:项目结构调整
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="ToolTipStyle" TargetType="ToolTip">
<Setter Property="OverridesDefaultStyle" Value="true" />
<Setter Property="HasDropShadow" Value="True" />
<Setter Property="Foreground" Value="{DynamicResource bg-200}" />
<Setter Property="Height" Value="30" />
<Setter Property="Width" Value="80" />
<Setter Property="Placement" Value="Bottom" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Name="Border"
Width="{TemplateBinding Width}"
Height="{TemplateBinding Height}"
BorderThickness="0">
<Grid>
<Viewbox Margin="0,-15" Stretch="Fill">
<TextBlock FontFamily="../Fonts/#iconfont"
RenderTransformOrigin="0.5,0.5"
Text="&#xe6e8;">
<TextBlock.Foreground>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<LinearGradientBrush.GradientStops>
<GradientStopCollection>
<GradientStop Offset="0.0" Color="{DynamicResource primary-1000}" />
<GradientStop Offset="1.0" Color="{DynamicResource primary-3000}" />
</GradientStopCollection>
</LinearGradientBrush.GradientStops>
</LinearGradientBrush>
</TextBlock.Foreground>
<TextBlock.RenderTransform>
<RotateTransform Angle="90" />
</TextBlock.RenderTransform>
</TextBlock>
</Viewbox>
<ContentPresenter Margin="4"
HorizontalAlignment="Center"
VerticalAlignment="Center" />
</Grid>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="HasDropShadow" Value="true">
<Setter TargetName="Border" Property="CornerRadius" Value="4" />
<Setter TargetName="Border" Property="SnapsToDevicePixels" Value="true" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/hi-coder/WubiMaster.git
git@gitee.com:hi-coder/WubiMaster.git
hi-coder
WubiMaster
中书君-Rime管理器
master

搜索帮助