2014-10-02 53 views
0

進出口使用syncfusion對WinRT中,我有以下控制如何對其進行編輯後保存Word文件(.DOCX),與syncfusion:SfRichTextBoxAdv

<sf:SfRichTextBoxAdv x:Name="richTextBox" Grid.RowSpan="2" ManipulationMode="All" IsZoomEnabled="True" /> 

當我的頁面加載我調用這個函數

private async Task GetFile() 
    { 
     IsLoading = true; 
     var bytes = await gappService.GetFileAsync(document.GetFullPath()); 
     IsLoading = false; 

     using (var stream = new MemoryStream(bytes)) 
     { 
      await richTextBox.LoadAsync(stream, FormatType.Docx); 
     } 
    } 

之後,.docx打開,我可以查看並編輯它,但我還沒有設法保存它。 我看到richTextBox有一個.Save和一個.SaveAsync函數,但我不能讓它工作

任何人都可以幫助我嗎?

回答

0

設法得到它與

StorageFile storageFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("file.docx",CreationCollisionOption.ReplaceExisting); 
richTextBox.Save(storageFile); 
工作
相關問題