Qt“复制/粘贴/剪切”
好吧,我正在做一个文本编辑器,基本上你写文本的地方是一个“QPlainTextEdit”,我遇到了问题,我正在尝试在“编辑”菜单中执行复制/粘贴/剪切的选项。
我的意思是“复制”,您在编辑器中选择文本,打开“编辑”菜单,单击“复制”并将其发送到剪贴板。 粘贴,粘贴你复制的内容? 剪切,剪切选定的文本。
Well, i'm doing a Text Editor, basically where you write the text is a "QPlainTextEdit" i'm having issues, i'm trying to do in "Edit" Menu, an option to Copy/Paste/Cut.
With Copy i meant, you select the text in the Editor, open Edit Menu, Click Copy and sends that to Clipboard.
Paste, pastes what you copied?
Cut, cuts the selected text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
QTextEdit
具有插槽复制
、粘贴
和剪切
。因此,您只需将您的信号连接到这些插槽,您就可以拥有抄送\抄送功能。您可以在 QDesigner 中做到这一点,无需编码。QTextEdit
has slotscopy
,paste
andcut
. So, You need just connect Your signals with these slots and You will have C-c\C-v functionality. You can do that in QDesigner without coding.