vote up 0 vote down star

Hi,

I'm trying to add a Java JFrame into a container inside a C# form. The JFrame I have is implementing a AppletStub aswell, and I've used IKVM to do the interopting, but the problem I get is that the Applet loaded in the AppletStub freezes. But it works perfect fine when its not interopting with C#. This is the only thing I'm doing btw, trying to load that JFrame into my C# form, and pass 2 integer values to the JFrame. Please let me know if there is a simple solution to do this...?

Also, let me know if this will be alot more easier in C++ rather then C#, so I can just do Java -> C++ -> C# ~ Thanks

flag

2 Answers

vote up 0 vote down check

I suspect that you may be having problems with the IKVM/Swing idea of what the UI thread is clashing with the WinForms idea ditto -- code that tried to perform WinForms UI operations on the wrong thread usually end up manifesting as frozen UI. I've not delved into the internals of the IKVM GUI implementation to be able to hazard a work-around (last time I tried UI stuff in IKVM, it was abundantly clear that this was not a priority for that project).

link|flag
So you are saying this is not possible...? – mail_321 Aug 17 at 1:05
It's software, open source in the case of IKVM, so the definition of "not possible" is a fairly elastic one; but you would probably have to do a bit of delving into IKVM internals to diagnose the problem. It's possible that wrapping every call to a UI component with an appropriate dispatch to its UI thread might be enough, but without looking into the implementation details, I can't be sure. You might be able to do something by holding the JFrame off-screen and just rendering its contents as an image into the WinForm, and then forwarding events on the WinForm back to the JFrame. – Steve Gilham Aug 17 at 6:34
I love your idea of holding the JFrame off-screen and just rendering its contents as an image! Would you happen to have any advice/suggestion on how this would be possible? (I'm not too experienced with C# & Java so I can't think of any other way besides caching the rendered image and displaying it in the winform, the only problem with doing this would be lots of resource uptake and cpu usage since the image inside the JFrame will be moving constantly...) Please suggest the best solution :) – mail_321 Aug 17 at 17:44
What I'd try first would be putting a suitable Graphics object I controlled throguh the JFrame's paint method, and rendering that as an image in some neutral format, which could then be piped through to the Form. Whether this would work, I don't know, but it seems the sort of thing that could be experimented with fairly quickly in a stand-alone program. – Steve Gilham Aug 17 at 19:56
I do not know what you mean completely, but this idea looks promising :) I'll post another question on rendering the JFrame's image to the form. – mail_321 Aug 17 at 21:54
vote up 0 vote down

Hmm, this is a little odd.

Maybe a lame trick could be to put the applet in as HTML inside a relevant C# control?

link|flag
But its not an Applet, I tried making the JFrame into an Applet or atleast a JApplet, but both get permission denied errors when tried to use the AppletStub. – mail_321 Aug 16 at 23:04
Ah, not an applet. Well. That's something I have no idea about then; sorry. – silky Aug 16 at 23:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.