Webkit on MonoDevelop on Ubuntu

I am using Mono 2.10 and MonoDevelop 2.8 on Ubuntu 12.04.

I am new to Mono. I created a simple application using this tutorial . And now I have 2 questions:

1 - Link to webkit-sharp.dll . I can find this DLL on my system along the way usr\lib\mono\gac\webkit-sharp\1.1.15.0__eaa1d335d2e19745\webkit-sharp.dll, but it is not visible to MonoDevelop. I can add it only by indicating the full path to the dll. This situation is not normal for me. Perhaps I should install some more packages to make webkit-sharp.dll visible or use another dll?

2 - The tutorial creates the gtk # application. Is it possible to use webkit in a winforms application? If so, how can this be done? I need to migrate an existing winforms application (with integrated webkit) to Mono. If you can create a winform application with webkit in Mono, it will save my time.

+5
source share
1 answer

I will try to answer both of your requests:

1) You can add a link to webkit-sharp.dll by right-clicking on the "links" in the "solutions" area:

enter image description here

Then click "Edit Links":

Edit references

Then select the ".NET Assembly" tab. Go to find "webkit-sharp.dll" and your set as far as the links go. In your code, of course, you'll need something like:

using webkit-sharp

2) . , , , MonoDevelop winforms, GUI-, afaik, winforms, MonoDevelop. MonoDevelop GTK # . ( , , .)

CHEERS!

+3

All Articles