Dialog hi = new Dialog("Welcome");Label lblDraggable = new Label("DRAGGABLE");lblDraggable.setDraggable(true);Container cntSrc = new Container();cntSrc.setDropTarget(true);cntSrc.setUIID("ComboBox");cntSrc.add(lblDraggable);cntSrc.setPreferredH(200);Container cntTarget1 = new Container();cntTarget1.setDropTarget(true);cntTarget1.setUIID("ComboBox");cntTarget1.add(new Label("A label"));Component.setSameHeight(cntSrc, cntTarget1);hi.addComponent(BoxLayout.encloseY(cntSrc, cntTarget1));hi.getContentPane().setPreferredSize(new Dimension(800, 600));hi.show();