如何检测控制文本的行号?

发布于 2024-11-17 09:32:34 字数 210 浏览 1 评论 0原文

该对话框包含静态文本控件。初始化对话框时,应用程序为此静态文本控件设置自定义文本:

HWND hWnd = GetDlgItem(IDC_MY_STATIC_TEXT);
::SetWindowText(hWnd, szMyCustomText);

我需要知道指定文本将分成的行数以及在 UI 中显示时的文本宽度。您能分享一下您的想法吗?

The dialog contains the static text control. When intializing the dialog the application sets a custom text to this static text control:

HWND hWnd = GetDlgItem(IDC_MY_STATIC_TEXT);
::SetWindowText(hWnd, szMyCustomText);

I need to know the number of the lines that the specified text will be broken into and this text width when it is displayed in UI. Could you please share your idea?

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

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

发布评论

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

评论(1

平安喜乐 2024-11-24 09:32:34

这将取决于字体、DPI 和其他设置。我建议查找 静态文本控件< /a> 上面写着:

系统在静态控件中显示尽可能多的文本,并剪辑不适合的内容。要计算控件的适当大小,请检索文本的字体规格。有关字体和字体规格的详细信息,请参阅字体和文本。

结合这篇关于计算结果文本大小的帖子应该得到您正在计算文本宽度(并了解文本高度和行数)。

This will depend on the font, DPI and other settings. I recommend looking up static text controls which says:

The system displays as much text as it can in the static control and clips whatever does not fit. To calculate an appropriate size for the control, retrieve the font metrics for the text. For more information about fonts and font metrics, see Fonts and Text.

Combined with this post about calculating the size of the resulting text should get you on your way to calculating the text width (and with knowledge of the text height the number of lines).

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