We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2731a9d commit 2fdbfcfCopy full SHA for 2fdbfcf
src/base/dialog.h
@@ -285,6 +285,9 @@ ret_t dialog_set_title(widget_t* widget, const char* title);
285
* dialog_modal返回后,dialog对象将在下一个idle函数中回收。
286
* 也就是在dialog_modal调用完成后仍然可以访问dialog中控件,直到本次事件结束。
287
* 调用该函数会使线程进入阻塞状态,需要调用dialog_quit来解除阻塞。
288
+ * > 建议尽量少用模态对话框,特别不要多级嵌套模态对话框,部分平台(如WEB)不支持模态对话框。
289
+ * > AWTK本身是不能操作对话框后面的窗口的,相当于是模态的,只是事件是异步的,传统模态对话框都是可以用非模态对话框实现的。
290
+ *
291
* @annotation ["scriptable"]
292
* @param {widget_t*} widget dialog对象。
293
*
0 commit comments