当前位置:编程学习 > C#/ASP.NET >>

C#中的richtextbox

如何设置C#中的richtextbox中的canundo属性 --------------------编程问答-------------------- Enable属性设为false --------------------编程问答-------------------- Enabled属性设为false --------------------编程问答--------------------
private void Menu_Undo(System.Object sender, System.EventArgs e)
 {
    // Determine if last operation can be undone in text box.   
    if(textBox1.CanUndo == true)
    {
       // Undo the last operation.
       textBox1.Undo();
       // Clear the undo buffer to prevent last action from being redone.
       textBox1.ClearUndo();
    }
 }
--------------------编程问答-------------------- 頂樓上一手 --------------------编程问答-------------------- 查看下它的枚举就知道了 --------------------编程问答--------------------
引用 3 楼 ds252743641 的回复:
C# code
private void Menu_Undo(System.Object sender, System.EventArgs e)
 {
    // Determine if last operation can be undone in text box.   
    if(textBox1.CanUndo == true)
    {
       // Undo the……
我说的是richtextbox它的canundo属性是只读的 --------------------编程问答-------------------- richtextbox.readonly=true
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,