FlowDocumentScrollViewer を動的に作成していますが、FlowDocumentScrollViewer で .txt ファイルを開くにはどうすればよいですか? リッチテキストボックスを持っていたときにこれを使用しましたが、FlowDocumentScrollViewer で同じことを行うにはどうすればよいですか?
fStream = new FileStream(filePath, FileMode.OpenOrCreate);
range = new TextRange(mcRTB.Document.ContentStart, mcRTB.Document.ContentEnd);
range.Load(fStream, DataFormats.Text);