自己写的java记事本程序出现的错误:
错误:ThemethodshowDialog(Component,String,Color)inthetypeJColorChooserisnotapplicablefo...
错误:The method showDialog(Component, String, Color) in the type JColorChooser is not applicable for the arguments (new
ActionListener(){}, String, Color)
itemcolor.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
Color newColor=JColorChooser.showDialog(this,"调色板",text.getForeground());
if(newColor!=null)
{
text.setForeground(newColor);
}
}
}); 展开
ActionListener(){}, String, Color)
itemcolor.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
Color newColor=JColorChooser.showDialog(this,"调色板",text.getForeground());
if(newColor!=null)
{
text.setForeground(newColor);
}
}
}); 展开
1个回答
展开全部
我说你的代码就不能贴的格式正常点吗....
JColorChooser.showDialog 方法需要的第一正贺个举游派参数类型是Component, 你传了this,但是你现在在ActionListener的磨前匿名内部类中,所以这个this指的是ActionListener这个匿名类的对象,而不是你外部的GUI类
解决方法:
1. 在ActionListener的外部把this保存下来,然后用那个变量
2. 用类名.this,比如你外面的那个类叫MyPanel,那么就写MyPanel.this
JColorChooser.showDialog 方法需要的第一正贺个举游派参数类型是Component, 你传了this,但是你现在在ActionListener的磨前匿名内部类中,所以这个this指的是ActionListener这个匿名类的对象,而不是你外部的GUI类
解决方法:
1. 在ActionListener的外部把this保存下来,然后用那个变量
2. 用类名.this,比如你外面的那个类叫MyPanel,那么就写MyPanel.this
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询