如何“永久”保护 RichTextBox 中的文本?

发布于 2024-11-04 22:14:00 字数 237 浏览 0 评论 0原文

我想在 RichTextBox 中保护一些选定的文本。我尝试了这样的操作:

MouseClickEvent(...)
{
   if(e.Button == MouseButtons.Middle)
   {
      SelectionProtected = true;
   }
}

当我这样做时,它会保护选定的文本,直到清除选择为止。如何才能使这种保护永久有效?

I want to make some selected text protected in RichTextBox. I tried something like this:

MouseClickEvent(...)
{
   if(e.Button == MouseButtons.Middle)
   {
      SelectionProtected = true;
   }
}

When I do this, it protects selected text until the selection is cleared. How can I make this protection permanent?

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

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

发布评论

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

评论(1

明媚如初 2024-11-11 22:14:00

文档说:

如果此属性设置为 true,则 当用户尝试更改当前文本选择时,会引发Protected事件

因此,在我看来,您只需拒绝用户尝试修改附加到 Protected 事件的处理程序方法内的控件中的受保护文本。

The documentation says:

If this property is set to true, the Protected event is raised when the user attempts to change the current text selection.

So, it seems to me, that you would simply reject the user's attempt to modify the protected text in the control inside of a handler method attached to the Protected event.

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