my dialog example as following:
public class DialogNotify extends JDialog{
public DialogNotify() {
setModal(true);
setSize(200, 100);
setVisible(true);
}
}
how to make it shown frameless ? by frameless, I mean with "close" button on top right or menu bar on top left.