我的WPF Descktop Aplication中有一个WebBrowser控件,我需要在表单start中打开这个webbrowser并使这段代码执行此操作:
public LibrasPlayer()
{
InitializeComponent();
LibrasPlayerWeb.LoadCompleted += webb_LoadCompleted;
}
void webb_LoadCompleted(object sender, NavigationEventArgs e)
{
LibrasPlayerWeb.InvokeScript("stop");
}
但当代码到达" LibrasPlayerWeb.InvokeScript(" stop");"有一个错误(DISP_E_UNKNOWNNAME)),这个网页使用Javascript与java引擎通信,使一个libras语言的玩家,但所有的InvokeScripts(停止,开始,和其他方法)给我这个错误。
有人知道如何使用它吗?