Netbeans中的Java GridLayout Manager

时间:2014-02-05 15:12:57

标签: java swing netbeans layout-manager grid-layout

NetBeans IDE 7.4无法识别GridLayout Manager出错:

no suitable method found for setLayout(GridLayout)     
  method Container.setLayout(LayoutManager) is not applicable       
    (argument mismatch; GridLayout cannot be converted to LayoutManager)     
  method JFrame.setLayout(LayoutManager) is not applicable       
    (argument mismatch; GridLayout cannot be converted to LayoutManager)

你知道可能出现什么问题吗?我卸载并重新安装JDK和IDE无济于事。不知道该怎么做。

2 个答案:

答案 0 :(得分:1)

setLayout(new GridLayout());

然后 Shift + Ctrl + I 解析所有导入。

对我来说效果很好。你可能忘记了实例化。

我能看到的唯一其他想法是你已经使用相同的包定义了自己的GridLayout类,并且GridLayout 不是 a {{1} }

答案 1 :(得分:-1)

确保您的班级(您在其中放置主要方法)未命名为GridLayout