我需要一种方法来选择某些文件而不显示OpenFileDialog。
是的,我知道CEF并不是使sth自动化的最佳方法,但是我需要使用CEF做到这一点。
我发现从2014年起这是可能的: https://github.com/cefsharp/CefSharp/pull/342/commits/c11fe8e4e97179ff4073208c13f9ff29e61bab79
在此commit中添加了覆盖文件浏览对话框结果的功能...但是我仍然不明白如何使用此功能...
我发现了用法示例,但它不起作用:
using System.Collections.Generic;
using System.IO;
namespace CefSharp.Example
{
public class TempFileDialogHandler : IDialogHandler
{
public bool OnFileDialog(IWebBrowser browser, string title, string defaultFileName, List<string> acceptTypes, out List<string> result)
{
result = new List<string> { Path.GetRandomFileName() };
return true;
}
}
}
它不会向我显示错误,即OnFileDialog中的IDialogHandler具有另一个参数(无结果)。
当前参数列表为:
public bool OnFileDialog(IWebBrowser browserControl, IBrowser browser, CefFileDialogMode mode, string title, string defaultFilePath, List<string> acceptFilters, int selectedAcceptFilter, IFileDialogCallback callback)
有人可以帮我吗?
我正在使用最新的CEFsharp:63.0.3
答案 0 :(得分:0)
public class TempFileDialogHandler : IDialogHandler
{
string[] _filePath;
public TempFileDialogHandler(params string[] filePath)
{
_filePath = filePath;
}
public bool OnFileDialog(IWebBrowser browserControl, IBrowser browser, CefFileDialogMode mode, string title, string defaultFilePath, List<string> acceptFilters, int selectedAcceptFilter, IFileDialogCallback callback)
{
callback.Continue(0, _filePath.ToList());
return true;
}
}
和用法:
Browser.DialogHandler = new TempFileDialogHandler(files);