Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 wpf 应用程序中使用 CefSharp 1。如何通过我的嵌入式导航器从站点下载文件?当我单击下载链接时,没有任何反应。
请参阅CefSharp 组中此线程中的答案
您可能需要为“文件”协议添加一个 shceme 处理程序。这就是我们所做的...
向 CEF 注册计划 -
CEF.RegisterScheme("file", new HandlerFactory());
添加一个从磁盘加载文件并返回相关响应的方案处理程序