复选框文本 l 与其文本不匹配
C# Win32: 我有一个复选框,里面有一些文本。但它位于分离器的其中一个面板上。我已将自动大小属性设置为 True ..但是当我将分隔条移至左侧以使空间变小时,它会切断复选框的一些文本...我怎样才能使其仍然显示整个文本,例如将其分成两行?
C# Win32:
I have a Checkbox with some text in it. but it is on one of the panels of a splitter. and I have set the auto size property to True ..but when I move the splitter bar to the left to make the space smaller it cuts off some of the text of the check box...how can i make it to still show the whole text and for example break it in two lines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用自动换行,您必须设置 AutoSize=false 。您可以使用 Anchors 或 DockStyle 将其与面板对齐。你必须给它足够的高度。
To use word wrapping you have to set AutoSize=false . You can use Annchors or DockStyle to align it to the panel. You will have to give it enough Height.