curses 中的多行菜单项描述
我有一个诅咒菜单,我想在其中添加多行描述。
我的代码放置了描述字段,但如果它们不适合该行,则它们不会显示。
Curses 很高兴将多行文本打印为字符串(而不是菜单描述)
有什么想法如何让多行描述工作吗?
I've got a menu in curses that I'd like to put multi-line descriptions onto.
My code puts the description fields on but they don't display if they don't fit on the line.
Curses is happy enough printing multi-line text as strings (not as menu descriptions)
Any ideas how to get multi-line descriptions working ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经放弃了这一点,而是渲染我自己的可滚动项目列表。
I've given up on this and render my own scrollable list of items instead.