如何“永久”保护 RichTextBox 中的文本?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档说:
因此,在我看来,您只需拒绝用户尝试修改附加到
Protected
事件的处理程序方法内的控件中的受保护文本。The documentation says:
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.