QT 按钮和 python lambda 函数
我只是想使用 QT Designer 在 maya/py 中为我的脚本创建一个 UI。
问题是我想使用 lambda 表达式作为按钮的命令 通过添加类型设置为字符串的动态属性,属性名称设置为“+command” 并将 lambda x: print('fobar!') 作为值。
但是使用 loadUI Python 命令在 Maya 中运行代码会出现语法错误。
它实际上加载了 UI,但按钮的功能不起作用!
I'm just trying to create a UI for my script in maya/py using QT Designer.
The problem is that I want to use a lambda expression as a command for my buttons
by adding a dynamic property with the type set to string, property name set to "+command"
and lambda x: print('fobar!')
as the value.
But running the code back in Maya using the loadUI Python command gives me a syntax error.
It actually loads the UI but the button's function doesn't work!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
How about: