How to call java from c#?

Java Eclipse: Gui help. How do I call a class for it to make another buttons and stuff for my frame (host)?

  • My code: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class YAY implements JFrame{ public YAY(){ super("Frame!") setVisible(true); setSize(300,300); setLayout(new FlowLayout()); JButton button = new JButton("ok"); Handler handler = new Handler(); button.addActionListener(handler); } public class Handle implements ActionListener{ public void actionPerformed(ActionEvent e){ if(e.getSource()==button){ // call another class to make extra stuff for the frame } } } public static void main(String [] args){ YAY frame = new YAY() } }

  • Answer:

    Type another "public class".... Good luck!

mico at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Type another "public class".... Good luck!

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.