<RichTextBox AcceptsTab="True" ForceCursor="True" IsDocumentEnabled="True" TextChanged="ContentChanged" Name="TextContent"/>
在C#文件中,我無法獲取Rich Textbox的Text屬性。 我想要得到這樣的;富文本框屬性問題
TextContent.Text= "hello"
但它給編譯時錯誤。
'System.Windows.Controls.RichTextBox' does not contain a definition for 'Text' and no extension method 'Text' accepting a first argument of type 'System.Windows.Controls.RichTextBox' could be found (are you missing a using directive or an assembly reference?)
請給我建議。
和錯誤消息是... – 2011-03-14 06:38:11
您需要使用文檔屬性,看看這裏:http://stackoverflow.com/questions/957441/richtextbox-wpf-does-not-have-string-property-text – 2011-03-14 06:43:24
你實際上是試圖讀取或寫入內容?因爲你問如何獲得並試圖設置例子......無論如何,我在下面的答案中添加了一些例子。 – 2011-03-14 17:38:01