实际上,有一个简单而 免费的 解决方案:使用您的浏览器,好吧,这是我使用的技巧:
var webBrowser = new WebBrowser();webBrowser.CreateControl(); // only if neededwebBrowser.documentText = *yourhtmlstring*;while (_webBrowser.documentText != *yourhtmlstring*) Application.DoEvents();webBrowser.document.ExecCommand("SelectAll", false, null);webBrowser.document.ExecCommand("Copy", false, null);*yourRichTextControl*.Paste();
这可能比其他方法慢,但至少它是免费的并且可以工作!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)