Hi,
I am working WebView works that using a EO.WebBrowser trial version 3.0.59, but I have a problem.
I enter the example url and click microphone image, then "...try to use your microphone deny / permission" phrase does appear at the top of Chrome Browser
but At WebView of EO.WebBrowser, I enter the example url and click microphone image then "...try to use your microphone deny / permission"
phrase does not appear at the top of the WebviewPlease, how do I fix it?
Thank you..
example url
==>
http://www.google.com/intl/en/chrome/demos/speech.htmlcode
==>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using EO.WebBrowser;
namespace WebKitTest
{
public partial class Form2 : Form
{
private WebView _webView;
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
webControl1.WebView.Url = textBox1.Text;
}
}
}