将 textBox.MinWidth 设置为当前文化、字体等所需的最大空间

发布于 2024-12-02 18:58:06 字数 143 浏览 2 评论 0原文

我希望我的 wpf 文本框具有足够大的最小宽度,以容纳恰好 1​​ 个字符,因为它将根据 wpf 文本(框)的字体系列、字体大小和其他属性以及当前区域性(可能是任何)。我可以将 MinWidth 属性设置为 FontSize 属性来实现此目的吗?这可能太简单了,无法工作。

I'd like my wpf textbox to have a minimum width large enough to accomodate exactly 1 character as it would be drawn depending on the font family, font size, and other properties of the wpf text(box) AND the current culture (could be any). Can I just set the MinWidth property to the FontSize property to achieve this? That's probably too simple to work..

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-12-09 18:58:07

您可以使用TextRenderer.MeasureText(string, font)

这是一个例子:

TextBox textBox = new TextBox();
Size size = TextRenderer.MeasureText("A", textBox.Font);
textBox.Width = size.Width;

You can use TextRenderer.MeasureText(string, font).

Here is an example:

TextBox textBox = new TextBox();
Size size = TextRenderer.MeasureText("A", textBox.Font);
textBox.Width = size.Width;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文