更快地将TextChanged事件中的RichTextBox文本设置为另一个Richtextbox?

时间:2014-07-13 20:28:21

标签: c# wpf richtextbox rtf

我正在一个允许实时编辑的程序中,使用只读模式的RTbox来显示文本。

为了便于编写/阅读我创建此自定义元素类的文本:

    public class Texts : RichTextBox
    {
        Paragraph p = new Paragraph();
        FlowDocument fd = new FlowDocument();
        TextRange tr;

        public Texts()
        {
            //_RtStylish is a class I made to create all the Brushes, Bitmaps and fonts stuff. It's kind of long to do this for each one so I implemented it to just write a simple line with my class.
            Background = _RtStylish._tr_cl;
            Foreground = _RtStylish._stdCl;

            BorderThickness = _RtStylish.t_flat;
            Width = 100;
            Height = 30;
            FontFamily = _RtStylish._font("Arial");
            FontSize = 40;
            Document = fd;
        }

        public void _text(string txt)
        {
            p.Inlines.Add(txt);
            fd.Blocks.Add(p);
//To add text I just write RichTextBox._text("Something");
        }



        public string _readText()
        {
            tr = new TextRange(fd.ContentStart, fd.ContentEnd);
            return tr.Text;
        }
//This returns a string with the text inside the RTbox

        public void _Cleartxt()
        {
            p.Inlines.Clear();
            fd.Blocks.Clear();
            p.Inlines.Add("");
            fd.Blocks.Add(p);
        }
//Clears my box

        public void _alignment(int n)
        {
            switch (n) 
            { 
                case 0:
            fd.TextAlignment = TextAlignment.Center;
            break;
                case 1:
            fd.TextAlignment = TextAlignment.Justify;
            break;
                case 2:
            fd.TextAlignment = TextAlignment.Left;
            break;
                case 3:
            fd.TextAlignment = TextAlignment.Right;
            break;
            }
        }


    }

问题是我有第二个窗口,它是真实窗口的缩放副本,允许更改RTbox中的文本以进行实时编辑。所以我所做的就是这个事件并把它交给所有丰富的盒子:

  private void _text(Object o, TextChangedEventArgs e)
    {
        if(_Tmod.IsFocused)
        {
            _title._Cleartxt();
            _title._text(_Tmod._readText());
        }
        else if(_Qmod.IsFocused)
        {
            _question._Cleartxt();
            _question._text(_Qmod._readText());
        }
        else if(_Amod.IsFocused)
        {
            _ans._Cleartxt();
            _ans._text(_Amod._readText());
        }

    }

如果我没有清除文本框,它将保留旧文本+ =新文本。例如,如果我在主窗口文本中有这个:" Hellowww"然后我通过RTbox编辑器修改它并添加一个" a"它显示:" HellowHellowa"所以我必须清除盒子。

它工作正常但是当用户在编辑器中键入文本时,它在主窗口中显示时有点迟钝。我认为这是因为我清理Box文档并在每次更改文本时添加新块。有没有更快的方法在更改时将文本框的文本分配给另一个文本框?

在WinForms中它就像TextBox1.Text = EditorTextbox.Text;并且没有lagg。通过lagg我的意思是在写一个长文本之间需要暂停一些。尽管如此,它不会错过任何角色,但我不喜欢看起来有点迟钝的程序:(

在WinForms中执行此操作的任何改进方法都可用吗?

1 个答案:

答案 0 :(得分:0)

如果您使用data binding,则可以使用A Bindable WPF RichTextBox执行您想要的操作。如果您希望相同的文本显示在两个TextBox es中,那么您可以将相同的FlowDocument属性绑定到Document es上的RichTextBox属性:

<Prefix:BindableRichTextBox Name="TextBox1" Document="{Binding YourProperty}" />
...
<Prefix:BindableRichTextBox Name="TextBox2" Document="{Binding YourProperty}" />

如果要显示文本的编辑版本,则可以添加另一个编辑文本的属性:

public FlowDocument YourProperty
{
    get { return yourProperty; }
    set
    {
        yourProperty = value;
        NotifyPropertyChanged("YourProperty");
        NotifyPropertyChanged("YourEditedProperty");
    }
}

public FlowDocument YourEditedProperty
{
    get { return SomeManipulationMethod(YourProperty); }
}

...

<Prefix:BindableRichTextBox Name="TextBox1" Document="{Binding YourProperty}" />
...
<Prefix:BindableRichTextBox Name="TextBox2" Document="{Binding YourEditedProperty}" />