范例GUI大家好,我有
问题。如果有人可以帮助,那就太好了。我正在使用border和
gridlayout,并且试图拆分GUI,但是这没有发生,因为我希望
按钮占整体的一小部分,可以说是1/5,但目前
超过了GUI的一半。我也尝试将按钮放在尺寸上,
但是我不确定这是否是一个好习惯。我有两个类,一个是
RunFurniture,它是框架的主要方法,另一个是
GUI的PanelFurniture,我正在使用eclipse和该程序正在编译
并运行。我希望我能给出一个很好的解释。这是代码。
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class PanelFurniture extends JPanel implements ActionListener
{
JButton center, east;
JButton[] commandButtons = {
new JButton(" Add Chair"),
new JButton(" Add Table"),
new JButton(" Add Desk "),
new JButton(" Clear All "),
new JButton("Total Price"),
new JButton(" Save "),
new JButton(" Load "),
new JButton("Summary ")
};
JPanel centerPanel, westPanel, eastPanel;
PanelFurniture()
{
this.setLayout(new BorderLayout());
westPanel = new JPanel();
westPanel.setLayout(new FlowLayout());
for(int i=0; i<commandButtons.length; i++)
{
westPanel.add(commandButtons[i]);
commandButtons[i].addActionListener(this);
}
// westPanel.setSize(westDimension);
this.add(westPanel, BorderLayout.WEST);
// start the middle panel
centerPanel = new JPanel(new GridLayout(1,2));
center = new JButton("center");
centerPanel.add(center);
east = new JButton("east");
centerPanel.add(east);
this.add(centerPanel, BorderLayout.CENTER);
}
public void actionPerformed(ActionEvent ae)
{
}
}
import java.awt.*;
import javax.swing.*;
public class RunRurniture
{
/**
* @param args
*/
public static void main(String[] args)
{
JFrame application = new JFrame();
PanelFurniture panel = new PanelFurniture();
application.add(panel);
application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
application.setSize(300,150);
application.setLocationByPlatform(true);
application.setVisible(true);
}
}
一些其他建议:
不要使用空格进行布局;使用对齐方式。
让布局通过使用组件的首选大小来完成工作。
for-each尽可能使用该构造。
从EDT开始。
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
/** @see http://stackoverflow.com/q/9793194/230513 */
public class FurnitureTest {
private static final class FurniturePanel
extends JPanel implements ActionListener {
private static final int N = 3;
private static final Icon icon =
UIManager.getIcon("OptionPane.informationIcon");
private JPanel westPanel = new JPanel();
private JPanel centerPanel = new JPanel();
private JButton[] commandButtons = {
new JButton("Add Chair"),
new JButton("Add Table"),
new JButton("Add Desk"),
new JButton("Clear All"),
new JButton("Total Price"),
new JButton("Save"),
new JButton("Load"),
new JButton("Summary")
};
FurniturePanel() {
this.setLayout(new GridLayout());
westPanel.setLayout(new BoxLayout(westPanel, BoxLayout.Y_AXIS));
for (JButton b : commandButtons) {
b.setAlignmentX(JButton.CENTER_ALIGNMENT);
westPanel.add(b);
b.addActionListener(this);
}
this.add(westPanel, BorderLayout.WEST);
centerPanel.setLayout(new GridLayout(N, N, N, N));
for (int i = 0; i < N * N; i++) {
centerPanel.add(new JLabel(icon));
}
this.add(centerPanel, BorderLayout.CENTER);
}
@Override
public void actionPerformed(ActionEvent e) {
System.out.println(e);
}
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame application = new JFrame();
FurniturePanel panel = new FurniturePanel();
application.add(panel);
application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
application.pack();
application.setLocationByPlatform(true);
application.setVisible(true);
}
});
}
}
我想要一个看起来像这样的视图,一个在项目之间没有间距的边框。 当前我的视图看起来是这样的,我使用的是一个带有卡片视图布局的recyclerview。 下面是我对每个项目的代码 是否有方法更改recyclerview边框?提前致谢:)
pre { white-space: pre-wrap; } 边框布局(border layout)提供五个区域:east、west、north、south、center。以下是一些通常用法: north 区域可以用来显示网站的标语。 south 区域可以用来显示版权以及一些说明。 west 区域可以用来显示导航菜单。 east 区域可以用来显示一些推广的项目。 center 区域可以用来显示主要
我有一个Jtable,现在我想在这个Jtable上方的一行中有一个JLabel和一个JTextField和一个JButton。 我该怎么做? 直到现在我有了这个: 现在,我在上面添加了以下内容: 但是怎么做呢,这里有一个:“Filter:TEXTFIELD BUTTON”,下面是表格?
border(int $borderStyle): \Vtiful\Kernel\Format 示例 $config = [ 'path' => './tests' ]; $fileObject = new \Vtiful\Kernel\Excel($config); $fileObject = $fileObject->fileName('tutorial.xlsx'); $f
我有一个mat网格列表,它具有用户定义行数和列数。我需要显示每个mat-grid-title单元格的所有边框。 但是,如何正确显示mat-grid-list的最外面的黑色边框呢? 这是我的stackblitz https://stackblitz.com/edit/Angular-7GJJJN 谢谢你
基准网络 所有组件都与间隔为 8dp 的基准网格对齐。排版/文字(Type)与间隔为 4dp 的基准网格对齐。在工具条中的图标同样与间隔为 4dp 的基准网格对齐。这些规则适用于移动设备、平板设备以及桌面应用程序。 有关详细信息请参见组件一节。 有关详细信息请参见字体排版一节。 边框与间距 移动设备 移动设备布局模板包含了多种多样的屏幕和信息,这些信息描述了边框与间距如何应用于屏幕边界和元素。下面