如何在 Windows 8 C++ 应用程序中设置和获取 RichEditBox 中的文本。
我已经尝试了这两种方法,但是程序在运行时不断崩溃
cpp
contentText->Document->Selection->GetTextViaStream(Windows::UI::Text::TextGetOptions::FormatRtf, outstream);
contentText->Document->GetText(Windows::UI::Text::TextGetOptions::FormatRtf, tempOutput);
。H
private:
Platform::String^* tempOutput;
Windows::Storage::Streams::IRandomAccessStream^ outstream;