- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 swing 编写一个程序,它使用链接的节点来存储一个值,然后以黄色条的形式将包含的值绘制到 JPanel 中。这幅画最初是使用 AWT 完成的。我读了一点 this关于在 swing 中绘画的教程,但我仍然不明白如何向 JPanel 绘画。该程序应该在按下“随机”按钮时绘制条形图,但目前什么也没画。
我已经包含了我认为相关的代码,但如果您需要任何其他部分,请告诉我。在此先感谢您提供的任何帮助或向我指出的任何教程。
public class DataOrganizer extends JPanel
{
private JFrame frame;
protected static final Color DEFAULT_COLOR = Color.YELLOW;
protected static final Color HIGHLIGHT_COLOR = Color.YELLOW.darker();
protected DataCollection<Item> collection; // To hold our items
protected DataCollection<Item> sortedCollection;
protected Item selected;
private final int COLLECTION_SIZE = 10, // Maximum number of items
MAXIMUM_ITEM_VALUE = 16; // Maximum value of an item
private int firstItemXCoord;
protected int firstItemYCoord;
/**
* Launch the application.
*/
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable() {
public void run()
{
try
{
DataOrganizer window = new DataOrganizer();
window.frame.setVisible(true);
}
catch (Exception e)
{
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public DataOrganizer()
{
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize()
{
/*
* Create and set-up the JFrame.
*/
frame = new JFrame();
frame.setPreferredSize(new Dimension(550, 450));
frame.setBounds(100, 100, 600, 400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
frame.setVisible(true);
/*
* Create btnRandom and add an action listener
* that calls randomAction().
*/
JButton btnRandom = new JButton("Random");
btnRandom.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
randomAction();
}
});
btnRandom.setBounds(6, 18, 117, 29);
frame.getContentPane().add(btnRandom);
/*
* Create btnMaximum and add an action listener
* that calls maximumAction().
*/
JButton btnMaximum = new JButton("Maximum");
btnMaximum.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
maximumAction();
}
});
btnMaximum.setBounds(6, 59, 117, 29);
frame.getContentPane().add(btnMaximum);
/*
* Create btnMinimum and add an action listener
* that calls minimumAction().
*/
JButton btnMinimum = new JButton("Minimum");
btnMinimum.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
minimumAction();
}
});
btnMinimum.setBounds(6, 100, 117, 29);
frame.getContentPane().add(btnMinimum);
/*
* Create btnRemove and add an action listener
* that calls removeAction().
*/
JButton btnRemove = new JButton("Remove");
btnRemove.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
removeAction();
}
});
btnRemove.setBounds(6, 141, 117, 29);
frame.getContentPane().add(btnRemove);
/*
* Create btnSort and add an action listener
* that calls sort().
*/
JButton btnSort = new JButton("Sort");
btnSort.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
sort();
}
});
btnSort.setBounds(6, 182, 117, 29);
frame.getContentPane().add(btnSort);
/*
* Create the JPanel, set the bounds,
* and add it to the frame.
*/
JPanel panel = new JPanel();
panel.setBounds(135, 0, 465, 378);
frame.getContentPane().add(panel);
//Initialize the unsorted collection
collection = new DataCollection<Item>(COLLECTION_SIZE);
//Initialize the sorted collection
sortedCollection = new DataCollection<Item>(COLLECTION_SIZE);
repaint();
}
public void paintComponent(Graphics panel) {
super.paintComponent(panel);
panel.drawString("Hello World", 140 , 10);
/*
* Display the Items when instantiated.
*/
if (collection != null)
{
Item item;
int xCoord = firstItemXCoord;
/*
* Reset the selected item to the start of the collection,
* ensuring it always starts at the first node
*/
collection.reset();
//While there is another node in the collection, loop through.
while (collection.hasNext())
{
/*
* Set the item to the selected node.
* Which since reset() was called on the
* collection, it should be the first node
* in the collection. Then set the next node in the
* collection a the selected one.
*/
item = collection.next();
/*
* Call the paint method in the item class
*/
item.paint(panel, xCoord, firstItemXCoord);
xCoord += Item.OVERALL_WIDTH;
}
}
/*
* Display the Items when instantiated.
*/
if (sortedCollection != null)
{
Item item;
int xCoord = firstItemXCoord + 200;
/*
* Reset the selected item to the start of the collection,
* ensuring it always starts at the first node
*/
sortedCollection.reset();
//While there is another node in the collection, loop through.
while (sortedCollection.hasNext())
{
/*
* Set the item to the selected node.
* Which since reset() was called on the
* sortedCollection, it should be the first node
* in the collection. Then set the next node in the
* collection a the selected one.
*/
item = sortedCollection.next();
/*
* Call the paint method in the item class
*/
item.paint(panel, xCoord, firstItemXCoord);
xCoord += Item.OVERALL_WIDTH;
}
}
}
//
// Random
//
public void randomAction()
{
collection.clear(); // We restart with nothing,
// then we add random items,
for (int i = 1; i <= COLLECTION_SIZE; i++)
{
collection.add(new Item((int) (1 + MAXIMUM_ITEM_VALUE
* Math.random()), DEFAULT_COLOR));
}
selected = null; // We make sure nothing is selected
}
最佳答案
查看 Custom Painting Approaches了解进行自定义绘画的几种方法。
The program is supposed to draw the bars when the "Random" button is pressed,but currently paints nothing
您可能希望使用第一种方法将对象添加到 ArrayList,这样您就有了一个要绘制的对象列表。因此按钮会添加要绘制的对象,然后您调用面板上的 repaint() 方法。
关于java - 如何在 swing 中绘制到 JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15691112/
我正在尝试使用 NetBeans 在 Java 中制作类似幻灯片的应用程序。 我有一个 JFrame(主窗口),里面有两个用于导航的按钮(后退和下一步),还有一个 JPanel(mainPanel),
新代码 package test; import javax.swing.*; import java.awt.*; public class TestWindow extends JFrame{ /
我是 Java swing 编码新手。我正在尝试将 JPanel 内容复制到一个新的 JPanel,它使用原始 JPanel 的内容来显示。此外,原始 JPanel 内容随着记录的变化而变化。我尝试了
我正在尝试创建一个带有另外两个 JPanel 的 JPanel,但是,当时,当我要显示主要内容时JPanel,它只显示主Jpanel上的第一个Jpanel。 通过以下示例,您将更好地理解这个问题: 我
我正在尝试学习如何使用编码风格在 Java 中完成 GUI 的工作这就是我写的: import java.awt.Container; import java.awt.Panel; import ja
我从 Oracle 教程中得到了一个 JPanel 的例子我看到它使用默认方法关闭窗口 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 我想
我在使用 Java JPanel 时遇到问题。我想将 2 个具有不同布局的 JPanel 放入一个也有布局的 JPanel 中。有可能让它发挥作用吗? BibP() setLayout(new
我试图让一个 JPanel 出现在另一个 JPanel 中。目前,JPanel 位于外部 JFrame 中,并与我的其他 JFrame 一起加载。我希望 JPanel 位于另一个 JPanel 内部,
是否可以在 Java 的一个方法中在一个面板中包含一个面板? 就像,如果我在名为 CreatePanel 的方法中创建了一个 JPanel,我可以在其下面添加另一个吗?我正在尝试在一种方法中添加两个或
我对嵌套的 BoxLayouts 有疑问。 我想构建一个由 2 个子面板组成的 DropDownPanel:顶部的标题和底部的主体。 body 最初是隐藏的。通过单击标题,您可以切换正文的可见性并显示
我需要创建一个在 JFrame 或 JPanel 上显示多个矩形的程序。这是我到目前为止提出的代码: import javax.swing.*; import java.util.Random; im
将站点中的一些图像保存到 ArrayList 后,我试图创建一个 jpanel,它将在带有滚动 Pane 的单独 jpanel 中显示所有这些图像,以便我可以向每个图像添加 Action 事件。然
我正在开发一个简单的注册窗口,它会在 Java 应用程序打开时出现。 这是一个 JFrame,里面有一个 JPanel,它有文本字段、标签,另一个面板也包含文本字段和标签。我的问题是外部面板有背景图像
我有这个界面要创建。我有 JScrollPane 的问题: 我声明了一个带有 Gridlayout(8,1,0,2) 的 JPanel,我希望在这个面板中出现 8 行。 一行是一个JPanel,我设置
我已经创建了 JFreeChart 并将其放入图表面板(按照建议)。我还将它添加到 jPanel 中。我正在使用 jFrame。但是运行程序后我的图表不可见。有谁能帮帮我吗? final JFreeC
我在下面附上了我的代码,我的程序的屏幕截图,以及我希望标签看起来像的图形。我需要我的 JPanel textPanel 出现在 LLP 选项卡上的 JButton 下方。我试图将 textPanel
我想从窗口 (JFrame) 中删除旧的 JPanel 并添加一个新的。我该怎么做呢? 我尝试了以下方法: public static void showGUI() { JFrame fram
我刚刚接触 Java,正在为我的大学类(class)开发一个项目。我正在开发一款《百万富翁》游戏,但我陷入困境。 我有一个 JFrame 类,其中有 2 个面板。第一个是由按钮组成的,第二个是我想通过
所以,我正在制作一个绘画程序,我有一个主要的Paint类,它检测鼠标输入和绘画,还有一个Tools类,它是左侧的工具栏,拥有许多工具,例如画笔大小更改和形状更改。因此,我想向 Tools 类添加一个清
我正在尝试制作一个在 JToggleButton 的帮助下激活的弹出面板。我希望在选择 ToggleButton 时将 JPanel 添加到另一个 Jpanel 上,并在取消选择 ToggleButt
我是一名优秀的程序员,十分优秀!