wpf 中的工具提示字体

发布于 2024-08-22 17:59:42 字数 30 浏览 2 评论 0原文

有人知道如何更改 ui 元素的工具提示字体吗?

Does anybody know how to change the font of tooltip for ui elements?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

两相知 2024-08-29 17:59:43

您可以通过添加文本块作为工具提示的子元素来做到这一点

<TextBox>
    <TextBox.ToolTip>
        <ToolTip>
            <TextBlock FontFamily="Tahoma" FontSize="10" FontWeight="Bold" Text="My tooltip text"/>
        </ToolTip>
    <TextBox.ToolTip>
</TextBox>

You can do it by adding textblock as tooltip's child element

<TextBox>
    <TextBox.ToolTip>
        <ToolTip>
            <TextBlock FontFamily="Tahoma" FontSize="10" FontWeight="Bold" Text="My tooltip text"/>
        </ToolTip>
    <TextBox.ToolTip>
</TextBox>
廻憶裏菂餘溫 2024-08-29 17:59:43

使用 FontFamily 工具提示 上的 属性

Use the FontFamily property on ToolTip

梦回梦里 2024-08-29 17:59:42

这为您在所有地方提供了非常大的工具提示:

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
   <Page.Resources>
      <Style x:Key="{x:Type ToolTip}" TargetType="{x:Type ToolTip}">
         <Setter Property="FontSize" Value="24"/>
      </Style>
   </Page.Resources>
   <Grid>
      <Button Content="Hey" ToolTipService.ToolTip="Hey"/>
   </Grid>
</Page>

如果您想更改特定的工具提示,您可以定义更接近该工具提示的样式,或者直接将字体大小放置在工具提示中:

  <Button Content="Hey">
     <ToolTipService.ToolTip>
        <TextBlock FontSize="64" Text="Hey"/>
     </ToolTipService.ToolTip>
  </Button>

This gives you really big tooltips in all places:

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
   <Page.Resources>
      <Style x:Key="{x:Type ToolTip}" TargetType="{x:Type ToolTip}">
         <Setter Property="FontSize" Value="24"/>
      </Style>
   </Page.Resources>
   <Grid>
      <Button Content="Hey" ToolTipService.ToolTip="Hey"/>
   </Grid>
</Page>

If you want to change particular tooltip you can define style closer to that tooltip, or place fontsize directly in the tooltip:

  <Button Content="Hey">
     <ToolTipService.ToolTip>
        <TextBlock FontSize="64" Text="Hey"/>
     </ToolTipService.ToolTip>
  </Button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文