Results 1 to 2 of 2
Thread: GUI Issue
- 02-21-2012, 10:03 PM #1
Member
- Join Date
- Jan 2012
- Posts
- 4
- Rep Power
- 0
GUI Issue
Hi friends, i have an issue , I want to make JButton that will grow a circle. I have JButton in the frame using BorderLayout on the WEST side of the frame i want to link up the two so that when the JButton is clicked the circle will grow or become bigger. I have thought and reached max. Am a newbie
Java Code:import java.awt.*; import java.awt.event.*; import javax.swing.*; public class GrowCircle extends JPanel { int x = 225; int y = 200; JFrame frame; public static void main(String[] args) { GrowCircle g = new GrowCircle(); g.setUpScreen(); } public void setUpScreen() { JFrame frame = new JFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); CircleDrawPanel drawPanel = new CircleDrawPanel(); frame.getContentPane().add(drawPanel); frame.setVisible(true); frame.setSize(500, 500); JButton east = new JButton("Click me to grow the circle"); frame.getContentPane().add(BorderLayout.EAST, east); } class CircleDrawPanel extends JPanel { public void paintComponent(Graphics g) { g.setColor(Color.blue); g.fillOval(x, y, 50, 50); } } }Last edited by DarrylBurke; 02-22-2012 at 10:13 AM. Reason: Fixed the code tag
- 02-22-2012, 10:17 AM #2
Re: GUI Issue
You didn't bother to return to the last thread you started before asking this near-identical question here. Nor did you return to the cross post you started on JavaRanch. --edit: see my remarks in the thread linked in the next paragraph.
I'm closing this thread. If you have anything to add, add it on your earlier thread: Increase Oval size by 2 every time the program is run. For the coordinates 50,50
dbLast edited by DarrylBurke; 02-22-2012 at 02:54 PM.
Why do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
Regular Expression issue and setName() method issue
By geforce in forum New To JavaReplies: 2Last Post: 01-30-2012, 03:33 AM -
How do I fix this issue?
By m4mm4l in forum New To JavaReplies: 8Last Post: 11-17-2011, 03:49 AM -
Same issue as before....
By hayden06f4i in forum New To JavaReplies: 4Last Post: 11-08-2010, 01:49 AM -
nio issue
By mawandiadeepak in forum NetworkingReplies: 2Last Post: 03-17-2010, 05:23 AM -
Issue
By chaitu444 in forum New To JavaReplies: 2Last Post: 11-06-2007, 07:49 PM


LinkBack URL
About LinkBacks

Bookmarks