0
私はこの方法を使用して、私のRichEditBoxにファイルの内容を追加しよう:UWP RichEditBoxは.rtfファイルのみを読み取りますか?
myRichEditBox.Document.LoadFromStream(Windows.UI.Text.TextSetOptions.None, streamFile);
そして、それは私が私のstreamFile変数を埋める方法です:
public static async void openFileAsync(string pathFolder, string file)
{
Windows.Storage.StorageFolder folder = await Windows.Storage.StorageFolder.GetFolderFromPathAsync(pathFolder);
System.Diagnostics.Debug.WriteLine("folder : " + folder.Path);
Windows.Storage.StorageFile fileOpen = await folder.GetFileAsync(file);
System.Diagnostics.Debug.WriteLine("file : " + fileOpen.Path);
Windows.Storage.Streams.IRandomAccessStream stream = await fileOpen.OpenAsync(Windows.Storage.FileAccessMode.Read);
streamFile = stream;
}
Iが上昇例外なく、richBoxEditテキスト全くありません(文字は読めません)。 私はtxtファイルを読んでみたい。
ご協力いただきありがとうございます。
読み込みしようとしているファイルの形式と形式は何ですか? –
ああ申し訳ありませんが、私は.txtファイルを読み込もうとしています –