c#怎么让richtextbox不可编辑?
发布网友
发布时间:2022-04-23 00:26
我来回答
共5个回答
热心网友
时间:2022-04-26 14:33
不是把enabled属性设置为fasle,而是把readonly属性设为true,并且把BackColor这是为White。
热心网友
时间:2022-04-26 15:51
把readonly属性设为true,把BackColor这是为White。
热心网友
时间:2022-04-26 17:26
xxx.ReadOnly = false;
xxx.BackColor = System.Drawing.Color.White;
热心网友
时间:2022-04-26 19:17
把readonly属性设为true
热心网友
时间:2022-04-26 21:25
很多人说直接将readonly属性设为true,这样的话richtextbox无法添加图片;
我这里介绍一个方法吧,叫做焦点转移,当richtextbox遇到鼠标点击事件,则将其焦点转移到其他控件上面,这样richtextbox就无法进行编辑了,代码如下:
'rtb_dhk富文本控件鼠标按下事件
Private Sub rtb_dhk_MouseDown(sender As Object, e As MouseEventArgs) Handles rtb_dhk.MouseDown
btn_send.Focus() '让btn_send控件得到焦点,这样就让rtb_dhk富文本控件失去焦点
End Sub
'rtb_dhk富文本控件鼠标点击事件
Private Sub rtb_dhk_MouseClick(sender As Object, e As MouseEventArgs) Handles rtb_dhk.MouseClick
btn_send.Focus() ' 让btn_send控件得到焦点,这样就让rtb_dhk富文本控件失去焦点
End Sub