Reputation: 95
I am trying to make own DialogBox for choosing the file. But it doesn't work for me.
I am catching the event:
webView.SelectLocalFiles += OnSelectLocalFiles;
private void OnSelectLocalFiles(object sender, FileDialogEventArgs e)
{
...
e.SelectedFile = "D:\\a.txt";
}
Where did I make mistake?
In example, Dialog Box is calling two times.
Upvotes: 0
Views: 227