给定xaml代码,例如


<RichTextBlock x:Name="richb"> </RichTextBlock>

如何从后面的C++代码向名为richb的RichTextBlock添加文本?

如果它是一个TextBlock,它将是

richb().Text(L"Any text can go here");

但是,这不适用于RichTextBlock。

最佳答案

RichTextBlock与TextBlock不同,您需要使用Paragraph元素定义要在RichTextBlock控件中显示的文本块。关于更多信息,您可以引用此document

#include "winrt/Windows.UI.Xaml.Documents.h"

using namespace winrt;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Documents;


Paragraph paragraph = Paragraph();
Run run = Run();

// Customize some properties on the RichTextBlock.
richb().IsTextSelectionEnabled(true);
richb().TextWrapping(TextWrapping::Wrap);
run.Text(L"This is some sample text to show the wrapping behavior.");

// Add the Run to the Paragraph, the Paragraph to the RichTextBlock.
paragraph.Inlines().Append(run);
richb().Blocks().Append(paragraph);

10-07 21:02