Netbeans按钮定制

时间:2013-01-22 14:42:58

标签: java swing netbeans

在设计选项卡下的Netbeans中,我可以添加一个生成私有成员javax.swing.JButton jbutton1的JButton。

我希望我的所有JButton都实现一个我称为X的自定义接口:

public class myCustomButton extends javax.swing.JButton
    implements X
{
   //Some code here...
}

有没有办法在myCustomButtons中添加而不是JButton而不会弄乱Netbeans设计师?

1 个答案:

答案 0 :(得分:2)

在其中一个标签上的按钮属性中,您可以放入帖子创建代码(寻找那个)或类似的东西,它们可以做你想要的。如果我的机器上有netbeans,我会更具体。

它不应该影响设计师的布局。

这就是我所说的:

Screenshot of the code tab of an element in the netbeans designer

该图片来自Netbeans 6,但它不应该改变。我相信这是你想要的创作后或宣传后。

或者您可以使用代码定制器: Screenshot of the Code Customizer in Netbeans 6