c# - How to Add text in current RichTextBox text WPF -


i want add text richtextbox.

example consider have 1 richtextbox , text "uzair" , want add "ali".
string mytext = "ali"
richtextbox.text += mytext

i don't know why there isn't text property of richtextbox in wpf
there alternative richtextbox.text property?

use appendtext add text richtextbox.

richtextbox.appendtext("ali"); 

Comments

Popular posts from this blog

php - regexp cyrillic filename not matches -

c# - OpenXML hanging while writing elements -

sql - Select Query has unexpected multiple records (MS Access) -