WPF UIElements 中的动态 TextSize

发布于 2024-07-19 02:57:59 字数 191 浏览 9 评论 0原文

正如建议的那样,我允许所有 WPF UIElement 具有动态大小,以便可以轻松调整它们的大小,但是,在 TextBlock 中,我必须指定 的大小>字体。 这意味着当元素的大小增加或减少时,字体大小保持不变。 有没有办法让 Font 大小是动态的?

As suggested I allow all of my WPF UIElements to have a dynamic size so they can be resized easily however, in TextBlocks I have to specify the size of the Font. This means when the element's size increases or decreases the Font size stays the same. Is there a way for the Font size to be dynamic?

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

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

发布评论

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

评论(1

夏夜暖风 2024-07-26 02:57:59

尝试将控件内的文本放入 Viewbox 中:

<Button>
    <Viewbox>
        <TextBlock>Text To Resize</TextBlock>
    </Viewbox>
</Button>

Try putting the text inside the control into a Viewbox:

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