Vaadin Dialog
シンプルなコードに追加しようとしているものが表示されません。これVertical Layout
が私のコードです。
Dialog d = new Dialog(new Label("Simple label"));
d.setCloseOnEsc(false);
d.setCloseOnOutsideClick(false);
Button cancelBtn = new Button("Cancel", event -> {
d.close();
});
d.add(cancelBtn);
add(d);
誰かが私を助けてくれることを願っています:)