我正在尝试以编程方式填充网页字段,我无法制作上传图片部分,因为我需要提升拖放事件,然后传递事件处理程序中的每个内容。有没有人知道如何使用GeckoFX网络浏览器做到这一点?
foreach(GeckoElement input in inputColz)
{
try
{
string inputName = input.GetAttribute("name");
if (inputName.Contains("image["))
{
//create event for drag and drop or something like that?
}
}
catch(Exception ex)
{
}
}