こんにちは私は自分のリッチテキストボックスのデータを他のリッチテキストボックスに表示または転送する際に問題があります...
richtextbox1.Document = richtextbox2.Document; //This will be the idea..
実際に私が計画しているのは、データベースからリストビューにデータを転送したいということです。リストビューには、データが何であるかが表示されます。
SQLDataEHRemarks = myData["remarks"].ToString();// Here is my field from my database which is set as Memo
RichTextBox NewRichtextBox = new RichTextBox();// Now i created a new Richtextbox for me to take the data from SQLDataEHRemarks...
NewRichtextBox.Document.Blocks.Clear();// Clearing
TextRange tr2 = new TextRange(NewRichtextBox.Document.ContentStart, NewRichtextBox.Document.ContentEnd);// I found this code from other forum and helps me a lot by loading data from the database....
MemoryStream ms2 = GetMemoryStreamFromString(SQLDataEHRemarks);//This will Convert to String
tr2.Load(ms2, DataFormats.Rtf);//then Load the Data to my NewRichtextbox
今私がやりたいのは、このデータを私のListView..またはtextblockやtextboxなどの他のコントロールにロードすることです...
_EmpHistoryDataCollection.Add(new EmployeeHistoryObject{
EHTrackNum = tr2.ToString() // The problem here is it will display only the first line of the paragraph.. not the whole paragraph
});