DevExpress RepositoryItemTextEdit 外观 TextOptions WordWrap=Wrap 不起作用
当我进入就地编辑器存储库并将 WordWrap 属性设置为 TextEdit 上的换行(它在垂直网格中用作编辑器)时,运行时不会换行。取而代之的是文本纸条。
我的用户强烈要求自动换行,他们也希望看到字段中的文本 - 不像 MemoExEdit 那样显示两种状态图标:“空”和“有一些文本”,并且用户只能看到当它们给予编辑器焦点时的文本。
是否可以在就地文本编辑上自动换行?或者该属性设置被忽略?
When I go into the In-Place Editor Repository and set the WordWrap property = Wrap on a TextEdit (it is being used as the editor in the Vertical Grid) there is no wrapping at runtime. The text tickertapes instead.
My users are clamoring for wordwrap, and they also want to see the text in the field too --not like the MemoExEdit which displays a two-state icon: "empty" and "has some text" and the user only gets to see the text when they give the editor focus.
Is it possible to get wordwrap on an in-place TextEdit? Or is that property setting ignored?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TextEdit
是一个单行编辑器。您应该使用
MemoEdit
来代替。TextEdit
is a single-line editor.You should use
MemoEdit
instead.也可以使用 MemoExEdit。只需将 ShowIcon 属性设置为 false,字段中的文本就会显示,而不是图标。
The MemoExEdit can be used as well. Simply set the ShowIcon property to false and the text in the field will be displayed instead of the icon.