[netbeans 6.5.1]桌面程序开发中,如何禁用最大化按钮
我使用netbeans 6.5.1开发了一个桌面应用程序,
但是该程序的最大化按钮始终无法去除,
我搜索了一些网站,也没有明确的说明,
请问,应该怎么禁用这个按钮?
多谢了!
netbeans: disable Maximize window button.
------解决方案--------------------
    public Main()
   {
       initComponents();
       this.setResizable(false);
       this.setLocation(400, 200);
   }