-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
有关窗口导航的问题 #12
Comments
你是希望关闭当前窗口并打开新窗口吧。在命令的参数里加个CloseWindow=True能满足需求吗? |
不能closewindow 只能关闭当前窗口,返回上一个窗口, |
加了几个函数,你看看满足你的需求不? /**
* @method navigator_replace
* 请求打开指定的窗口,并关闭当前窗口。
*
* @annotation ["static"]
*
* @param {const char*} target 目标窗口的名称及参数(请参考窗口导航文档)。
*
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
*/
ret_t navigator_replace(const char* target);
/**
* @method navigator_switch_to
* 如果目标窗口已经存在,直接切换到该窗口,否则打开新窗口。
*
* @annotation ["static"]
*
* @param {const char*} target 目标窗口的名称及参数(请参考窗口导航文档)。
* @param {bool_t} close_current 是否关闭当前窗口。
*
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
*/
ret_t navigator_switch_to(const char* target, bool_t close_current);
/**
* @method navigator_close
* 关闭指定窗口。
*
* @param {const char*} name 目标窗口的名称。
* @annotation ["static"]
*
* @return {ret_t} 返回RET_OK表示成功,否则表示失败。
*/
ret_t navigator_close(const char* name); |
嗯,好谢谢!但希望可以增加 back (向后) 但不关闭当前窗口,还有 forward (向前) 不关闭当前窗口 这样类似的接口,感谢! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
有关窗口导航
目前可以 navigator_to()某个窗口,会新建该窗口,如果原来的同一个model-view也不会销毁;
navigator_back会销毁当前返回到上一个窗口,
急需能够有一个 navigator_switch() 窗口切换,既不会新建窗口,又可以在各个存在的窗口中,进行切换!!!!
The text was updated successfully, but these errors were encountered: