A Microsoft platform for building and publishing apps for Windows devices.
Hello,
Welcome to Microsoft Q&A!
If you load a lot of text at once, the text will be rendered on the UI thread, which means the UI will get stuck.
For text controls such as RichTextBlock, the text is usually sliced.
For example, the novel can be separated according to chapters, a String is processed into a List<String>, and then only a part is loaded at a time.
Thanks.