有人可以给我提供一个示例,说明用户单击图像元素时如何显示自定义对话框吗?
我认为这是打开新对话框的代码。但是如何将其绑定到点击事件?
var modal = new ContentTools.ModalUI(true, true);
var dialog = new ContentTools.DialogUI('test')
ContentTools.EditorApp.get().attach(modal);
ContentTools.EditorApp.get().attach(dialog);
modal.show();
dialog.show();
第二个问题是,如何将内容绑定到对话框?