QT 按钮和 python lambda 函数

发布于 2024-12-07 23:45:30 字数 236 浏览 1 评论 0原文

我只是想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

り繁华旳梦境 2024-12-14 23:45:30

怎么样:

button_name.clicked.connect(lambda : print('foobar'))

How about:

button_name.clicked.connect(lambda : print('foobar'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文