克隆Flow文档时遇到的问题

时间:2014-12-22 10:56:21

标签: wpf wpf-controls wpf-4.0

我有一个流文档,我需要创建相同的克隆,但是当我尝试克隆该流文档时,按钮和超链接没有得到克隆。

   System.IO.MemoryStream s = new System.IO.MemoryStream();
            TextRange source = new TextRange(document.ContentStart, document.ContentEnd);
            source.Save(s, DataFormats.Xaml);
            FlowDocument copy = new FlowDocument();
            TextRange dest = new TextRange(copy.ContentStart, copy.ContentEnd);
                        dest.Load(s, DataFormats.Xaml);

0 个答案:

没有答案