Guys i have the awesomium webcontrol that was available in the toolbox and it doesnot display choose file or any dialog box for uploading files(e.g. uploading pic/video in facebook).pls give the complete procedure on how to enable it.i am using visual c# and it is a wpf application.
Some more info is needed.
WebControl
?The WinForms WebControl
provides all dialogs. The WPF WebControl
provides all dialogs too, however, folder selection dialogs are only supported on Windows Vista and newer. If the dialogs do not appear, you may have to handle the SelectLocalFiles
event. Make sure the event is fired. If it is but you still see no dialog, handle the event yourself and display your own modal dialog. Provide the result to FileDialogEventArgs.SelectedFile
or FileDialogEventArgs.SelectedFiles
and don't forget to set FileDialogEventArgs.Handled
to true
.