Swing shielding of components

来源:互联网 发布:被冷落的网络流行语 编辑:程序博客网 时间:2024/06/06 02:19

In project , SWING#JCOMBO and SWT的browser,priority of JCOMBO is lower than priority of browser, so the item in drop list is shielded. Solution is to use index to set the level of components.

      m_pane.add(super.getPane(), "0,4,10,4", 6);
      m_pane.add(getFilterCB(), "10,2", 0);

0 0