Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为用户界面使用 Enlightment 库(C api)。我想以编程方式折叠框架,但是该功能似乎不起作用:
elm_frame_collapse_set(my_frame, EINA_TRUE);
当我触发该功能时,我收到一条错误消息:
efl_ui_frame_collapse_set (2399) could not be resolved for class 'Elm.Box'.
错误消息说您将 Box 对象输入到框架 API 而不是 Frame 对象。
请检查您的代码。
如果您向 API 提供正确的对象。请让我知道代码。
实际上,它在我的示例案例中运行良好。