Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

light weight browser control for c# application

is any light weight browser control available for c# application other than builtin web browser control, when i am using IE or Webkit control for embedding it will consumes 80 MB Memory to render a flash website of(800*600 resolution). how can i reduce the memory
EDIT1:
webkit for .net available webkitdotnet.sourceforge.net which is similar to web browser control i am tested it

like image 403
Suriyan Suresh Avatar asked Apr 22 '10 05:04

Suriyan Suresh


2 Answers

If you're just trying to embed Flash, This tutorial describes how to do it:

Embedding a flash player control in a.NET winforms application

The key here is to add the "Shockwave Flash Object" COM object to your project. You'll then have a Shockwave Flash Object control in the toolbox which you can drag onto the form. Set the Movie property to the .swf object.

Then you can skip the whole browser.

like image 68
Keltex Avatar answered Sep 30 '22 19:09

Keltex


There is Mozilla embedding available.

like image 34
AngryHacker Avatar answered Sep 30 '22 21:09

AngryHacker