java按钮和paint同时显示出问题
主方法中newMyFrame()importjava.awt.*;importjavax.swing.*;publicclassMyFrameextendsFrame{M...
主方法中new MyFrame()
import java.awt.*;
import javax.swing.*;
public class MyFrame extends Frame{
MyFrame()
{
super("test.fuckyou");
setLayout(null);
setSize(1920, 1080);
Button[] button = new Button[3];
button[0] = new Button("1");
button[1] = new Button("1");
button[2] = new Button("1");
button[0].setBounds(960, 300, 50, 50);
button[1].setBounds(660, 700, 50, 50);
button[2].setBounds(1260, 700, 50, 50);
add(button[0]);
add(button[1]);
add(button[2]);
setVisible(true);
}
public void paint(Graphics g)
{
g.drawLine(985, 325, 685, 725);
}
}
这样可以实现
把Frame换为JFrame,Button换为JButton
import java.awt.*;
import javax.swing.*;
public class MyFrame extends JFrame{
MyFrame()
{
super("test.fuckyou");
setLayout(null);
setSize(1920, 1080);
JButton[] button = new JButton[3];
button[0] = new JButton("1");
button[1] = new JButton("1");
button[2] = new JButton("1");
button[0].setBounds(960, 300, 50, 50);
button[1].setBounds(660, 700, 50, 50);
button[2].setBounds(1260, 700, 50, 50);
add(button[0]);
add(button[1]);
add(button[2]);
setVisible(true);
}
public void paint(Graphics g)
{
g.drawLine(985, 325, 685, 725);
}
}
下半部分代码实现的是一条线和一个按钮,而且移动窗口按钮也不见了
上半部分代码可以实现3个按钮和一条线,下面的代码应该怎么改 展开
import java.awt.*;
import javax.swing.*;
public class MyFrame extends Frame{
MyFrame()
{
super("test.fuckyou");
setLayout(null);
setSize(1920, 1080);
Button[] button = new Button[3];
button[0] = new Button("1");
button[1] = new Button("1");
button[2] = new Button("1");
button[0].setBounds(960, 300, 50, 50);
button[1].setBounds(660, 700, 50, 50);
button[2].setBounds(1260, 700, 50, 50);
add(button[0]);
add(button[1]);
add(button[2]);
setVisible(true);
}
public void paint(Graphics g)
{
g.drawLine(985, 325, 685, 725);
}
}
这样可以实现
把Frame换为JFrame,Button换为JButton
import java.awt.*;
import javax.swing.*;
public class MyFrame extends JFrame{
MyFrame()
{
super("test.fuckyou");
setLayout(null);
setSize(1920, 1080);
JButton[] button = new JButton[3];
button[0] = new JButton("1");
button[1] = new JButton("1");
button[2] = new JButton("1");
button[0].setBounds(960, 300, 50, 50);
button[1].setBounds(660, 700, 50, 50);
button[2].setBounds(1260, 700, 50, 50);
add(button[0]);
add(button[1]);
add(button[2]);
setVisible(true);
}
public void paint(Graphics g)
{
g.drawLine(985, 325, 685, 725);
}
}
下半部分代码实现的是一条线和一个按钮,而且移动窗口按钮也不见了
上半部分代码可以实现3个按钮和一条线,下面的代码应该怎么改 展开
2个回答
推荐于2016-10-04
展开全部
public void paint(Graphics g)
{
super.paint(g);
g.drawLine(985, 325, 685, 725);
g.dispose();
}
{
super.paint(g);
g.drawLine(985, 325, 685, 725);
g.dispose();
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询