我对覆盖JComponent
个对象以及使用Java绘画的知识非常有限。我想要做的是创建一个函数,我可以调用它来设置透明度,避免在面板内单击按钮时出现伪像。基本上我会在另一个小组的JPanel
内使用它。像,
class panel1 extends JPanel(){
public panel1(){
this.add(new panel2())
//call the setPanelTransparency(this);
}
class panel2 extends JPanel(){
this.setPreferredSize(new Dimension(500,500));
this.setBorder(BorderFactory.createLineBorder(2,Color.RED);
}
如何更正此方法?当我尝试将其作为方法包含在panel1
类中时,我会收到错误。
public void setPanelTransparency(JPanel myPanel){
protected void paintComponent ( Graphics g )
{
g.setColor ( getBackground () );
g.fillRect ( 0, 0, getWidth (), getHeight () );
super.paintComponent ( g );
}
});
myPanel.setOpaque(false);
myPanel.setBackground(new Color(49,43,31,60));
}
我很感激任何帮助。我想知道使Panels透明的最简单方法,没有任何工件风险。我需要一种可以调用的方法。此外,我尝试UIManager.put()
,但似乎没有任何工件正确应用。
我很欣赏将透明度应用于项目的最简单的解决方案,因此我可以专注于创建表格。
答案 0 :(得分:6)
您不能使用setPanelTransparency()等方法来覆盖方法。
该面板需要自己成为一个类来覆盖paintComponent(...)方法:
//public void setPanelTransparency(JPanel myPanel){
public class TransparentPanel extend JPanel
{
TransparentPanel()
{
setOpaque( false );
}
@Override
protectect void paintComponent(...)
...
}
然后您只需使用以下面板:
TransparentPanel panel = new TransparentPanel();
panel.setBackground(...);
panel.add( new JTestField(10) );
frame.add( panel );
有关此方法和其他解决方案的更多信息,请参阅Background With Transparency。