Convert FlowDocument to simple text
问题 what is the most simple and elegant way how convert flowdocument to simple text? 回答1: How about this? string text = new TextRange(FlowDoc.ContentStart, FlowDoc.ContentEnd).Text; 来源: https://stackoverflow.com/questions/4629924/convert-flowdocument-to-simple-text