如何检测控制文本的行号?
该对话框包含静态文本控件。初始化对话框时,应用程序为此静态文本控件设置自定义文本:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将取决于字体、DPI 和其他设置。我建议查找 静态文本控件< /a> 上面写着:
结合这篇关于计算结果文本大小的帖子应该得到您正在计算文本宽度(并了解文本高度和行数)。
This will depend on the font, DPI and other settings. I recommend looking up static text controls which says:
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).