What is the best way to detect if a WPF RichTextBox/FlowDocument is empty?
The following works if only text is present in the document. Not if it contains UIElement's
new TextRange(Document.ContentStart, Document.ContentEnd).IsEmpty
|
What is the best way to detect if a WPF RichTextBox/FlowDocument is empty? The following works if only text is present in the document. Not if it contains UIElement's
| |||
|
feedback
|
|
You could compare the pointers, which is not all too reliable:
This evaluates to In the Silverlight reference on MSDN another method is found which can be adapted and improved to:
| |||||||||
|
feedback
|