如何在 RichEdit 控件具有最大文本长度时收到通知
当 richedit 控件中的字符串大小达到其宽度的最大平均值时,我想增加编辑控件的高度。我已经使用 EN_MaxText 但它在 RichEdit 控件中不起作用。
I want to increment the height of my edit control when size of string in richedit control gets maximum means to its width. I have used EN_MaxText but it is not working in RichEdit control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 OnChange 事件并检查长度。如果达到了,您可以做任何您想做的事情,例如使用 MessageBox 通知用户。
You can use OnChange event and check the length. If it is reached you can do whatever you want, like use a MessageBox notifying the user.