编辑多个 RichTextBox 和 TextBox

发布于 2024-09-02 13:24:30 字数 53 浏览 6 评论 0原文

如何以多文本框形式从主菜单剪切、复制、粘贴?

菜单如何知道应用于活动文本框?

How do i cut,copy,paste from main menu in a multi textboxes form ?

How does the menu knows to apply on the active textbox ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无力看清 2024-09-09 13:24:30

请参阅 Codeproject 上的这篇文章,该文章负责同步每个文本框的工作“标准”编辑菜单,例如复制、剪切、粘贴、撤消、全选。当然,该代码最初是针对 .NET 1.1 的,但它也可以轻松地重新编译以针对较新的框架。

Please see this article here on Codeproject that does the job in synchronizing each text box's "standard" edit menu such as Copy, Cut, Paste, Undo, Select All. Of course, the code originally targets the .NET 1.1, but it can be easily recompiled to target the newer frameworks as well.

酒解孤独 2024-09-09 13:24:30

在菜单单击事件中,您可以检查 this.ActiveControl 以查看当前具有输入焦点的控件。

In the menu click event you can examine this.ActiveControl to see what control currently has input focus.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文