我的wpf表单上有一个richtextbox,我想从数据库填充。它给了我一个richtextbox不包含.text属性的错误。请帮助我,以便我可以将数据检索到RichtextBox
richTextBox1.text = dt.Rows[counter][6].ToString();
答案 0 :(得分:0)
实际上RichTextBox没有Text属性。要在Richtextbox中显示字符串,我们必须执行以下操作。
richTextBox1.Document.Blocks.Clear();
richTextBox1.Document.Blocks.Add(new Paragraph(new Run("here you can place string")));