我正在做一个记事本风格的程序。
If e.Control = True And e.KeyCode = Keys.C Then
MsgBox("Kopyalandı")
My.Computer.Clipboard.SetText(RichTextBox1.SelectedText)
RichTextBox1.Focus()
End If
正如我们所做的那样,键入ctrl+c以复制选定的单词,但我想要在 MsgBox 中发出的内容为
If e.Control = True And e.KeyCode = Keys.C Then
My.Computer.Clipboard.SetText(RichTextBox1.SelectedText)
RichTextBox1.Focus()
End If
无法复制选定的单词(程序来自我的谷歌等。我们制作ctrl+v来复制和粘贴我不能复制的单词。)我编写了我尝试的代码ctrl+ cMsgBox 退出程序,即使你退出选中的单词副本?