I want to use Google blockly in my C# Window Form. I'm using inbuilt Webbrowser in my application. Here is Code :
namespace WbView
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
WebBrowser browser = new WebBrowser();
browser.Navigate("https://blockly-demo.appspot.com/static/demos/interpreter/step-execution.html");
browser.Width = 800;
browser.Height = 600;
this.Controls.Add(browser);
}
}
}
When I'm running it first time I got Script Error like this
But After that I changed some Registry entries and it works according to modern browsers
Registry Entries
But the Problem is Now I'm unable to use mouse to drag and drop Blocks not even zoom in or zoom out what I can use is just the toolbox to show blocks and nothing else.
Does anyone faced this type of Problem? What have I done:
1. I have used CefSharp and it was works perfectly. but CefSharp Supports only > .net v4.x.x but I want that my application supports min. .NET v3.5 I want that my Application support windows 7, 8, 10