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
Post a Comment