为什么即使添加到JScrollPane,JTable也不显示Jtable标题?

时间:2015-07-07 05:45:21

标签: java swing jtable transparency paintcomponent

import javax.swing.*; 
import javax.swing.border.*;
import javax.swing.table.TableColumn;

import java.awt.*;

import static java.awt.GraphicsDevice.WindowTranslucency.*;

import java.awt.Checkbox;
import java.awt.Paint;
import java.awt.Toolkit;
import java.awt.event.*;

public class Main extends JPanel {

    static Object [][] Services = {{"Google.exe","Chickeaen.exe","Crp.exe"}};
    static String [] ColNames = {"Processes:","Crolly:","Haler:"};

    static JFrame Fram = new JFrame(); 
    static JTextField CBox = new JTextField();
    static JTable Tabs = new JTable(Services,ColNames);
    JScrollPane ScrollArea = new JScrollPane();
    static JButton ExitB = new JButton();
    Dimension ScreenSize = new Dimension(Toolkit.getDefaultToolkit().getScreenSize());
    Border BlackLineB = BorderFactory.createLineBorder(new Color(50,50,50));

    public Main() {

    Fram.setTitle("Jared Console");
    Fram.setUndecorated(true);
    Fram.setVisible(true); 
    Fram.setDefaultCloseOperation(Fram.EXIT_ON_CLOSE);
    Fram.setResizable(false);
    Fram.setSize((int)Math.round(ScreenSize.getWidth()*0.45),(int)Math.round(ScreenSize.getHeight()*0.33));
    Fram.setBackground(new Color(0,0,0,150));
    Fram.add(this);

    CBox.setSize((int)Math.round(Fram.getWidth()*0.80),(int)Math.round(Fram.getHeight()*0.25));
    CBox.setBackground(new Color(255,255,255));
    CBox.setBorder(BorderFactory.createCompoundBorder(BlackLineB,BorderFactory.createEmptyBorder(0,20,0,0)));
    CBox.setLocation((int)Math.round(Fram.getWidth()*0.1),(int)Math.round(Fram.getHeight()*0.70));
    CBox.setFont(new Font("Arial",Font.BOLD,20));
    CBox.setVisible(true);

    ScrollArea.setSize((int)Math.round(Fram.getWidth()*0.80),(int)Math.round(Fram.getHeight()*0.50)); 
    ScrollArea.setLocation((int)Math.round(Fram.getWidth()*0.10),(int)Math.round(Fram.getHeight()*0.10));
    ScrollArea.setBorder(BlackLineB);
    ScrollArea.setLayout(null);
    ScrollArea.setVisible(true);

    Tabs.setSize((int)Math.round(Fram.getWidth()*0.995),(int)Math.round(Fram.getHeight()*0.995));
    Tabs.setLocation((int)Math.round(Fram.getWidth()*0.003),(int)Math.round(Fram.getHeight()*0.005));
    Tabs.setFillsViewportHeight(true);
    Tabs.setBackground(new Color(255,255,255));

    this.add(CBox);
    this.add(Tabs);
    this.add(ExitB);
    ScrollArea.add(Tabs);
    this.add(ScrollArea);
    this.setBorder(BorderFactory.createLineBorder(new Color(50,50,50),5));
    this.setLayout(null);
    this.setBackground(new Color(0,0,0));
    this.setVisible(true);

    }

    public void paintComponent(Graphics Gla) { 
    Paint Plat = new GradientPaint(0f, 0f, new Color(0, 40, 0, 0), 0.0f, Fram.getHeight(), new Color(0, 0, 0, 150), true); //Made 200 equal to Fram Background Alpha.
    Graphics2D Quo = (Graphics2D)Gla;
    Quo.setPaint(Plat);
    Quo.fillRect(0, 0, Fram.getWidth(), Fram.getHeight());
    }

    public static void main(String[] args) {
    Main CScreen = new Main(); 
    GraphicsEnvironment GE = GraphicsEnvironment.getLocalGraphicsEnvironment(); // Have to study lines 57,58 and 59
    GraphicsDevice GD = GE.getDefaultScreenDevice();
    boolean CheckTransL = GD.isWindowTranslucencySupported(PERPIXEL_TRANSLUCENT);

    if (!CheckTransL) {
        System.out.println("PERPIXEL TRANSLUCENT NOT SUPPORTED - LOL UPDATESCRUB!");
        System.exit(0);
    };  
    }

}

为什么即使添加到JScrollPane,JTable也不显示Jtable标题? 控制台首先显示错误消息然后快速消失并启动程序?所以,我想知道这个有什么问题,你也可以注意到这个程序中的一些坏习惯,比如它的打字方式。

2 个答案:

答案 0 :(得分:2)

问题

  • null布局。避免使用null布局,像素完美布局是现代ui设计中的错觉。影响组件个体大小的因素太多,您无法控制。 Swing旨在与布局管理器一起工作,放弃这些将导致问题和问题的结束,您将花费越来越多的时间来纠正。有关详细信息,请参阅Laying Out Components Within a Container
  • 过度使用staticstatic不是你的朋友,你应该避免使用它。它不是一个跨对象的通信机制,过度使用会烧掉你
  • 您实际上并未将JTable包裹在JScrollPane
  • 通过不调用paint打破super.paintComponent链,这将产生一系列精彩的绘画工件。有关绘画如何在Swing
  • 中工作的详细信息,请参阅Painting in AWT and SwingPerforming Custom Painting
  • 您可能希望阅读Code Conventions for the Java TM Programming Language,这样可以让人们更轻松地阅读您的代码并让您阅读其他人
  • 应该在事件调度事件的上下文中完成对UI的所有交互,创建和修改,以降低潜在竞争条件,死锁和渲染工件的风险。有关详细信息,请参阅Initial Threads
  • Toolkit.getDefaultToolkit().getScreenSize()是屏幕可视空间的错误指示器,它没有考虑操作系统特定的元素,如停靠栏或任务栏,它们可能会让您的应用程序出现在它们下面(我真的,真的,当发生这种情况时真的很讨厌它。使用适当的布局管理器和pack打包内容周围的窗口。然后,您可以使用JFrame#setLocationRelativeTo并将其传递给null,它会将框架置于屏幕中心

JScrollPane问题......

简单的解决方案是使用JScrollPane的构造函数向其传递JTable的引用...

static JTable Tabs = new JTable(Services,ColNames);
JScrollPane ScrollArea = new JScrollPane(Tabs);

但是,您稍后会在代码中执行此操作...

this.add(Tabs);

这将从滚动窗格中删除该表以将其添加到您的面板,因为组件只能有一个父组件。

另一种选择是指定滚动窗格的视口组件......

this.add(CBox);
//this.add(Tabs);
this.add(ExitB);
//ScrollArea.add(Tabs);
ScrollArea.setViewportView(Tabs);
this.add(ScrollArea);

您永远不应该将组件直接添加到滚动窗格(或它的基础视口),它们还有自己的内部布局管理功能。相反,您需要提供组件作为"视图"到JViewport

请查看How to Use Scroll Panes了解详情。

答案 1 :(得分:0)

首先,您应该向JTable的{​​{1}}添加ViewPort,以便JScrollPane可见。

之后,您应该JTableHeader添加到JTable以及基础容器中。你应该:

  1. JScrollPane添加到JTable。{/ li>的ViewPort
  2. JScrollPane添加到基础容器。
  3. 并删除明确地将JScrollPane添加到容器的行。

    祝你好运。