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

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -