作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码工作正常,但当我运行脚本时,我在终端中收到此警告。我错过了什么?
abc.py:10: PyGTKDeprecationWarning: Using positional arguments with the GObject constructor has been deprecated. Please specify keyword(s) for "label" or use a class specific constructor. See: https://wiki.gnome.org/PyGObject/InitializerDeprecations
actor_act = Gtk.Button("Click Here")
脚本名称:abc.py
实际代码:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
def actor(button):
print('Simple Button')
boxy = Gtk.Window(title="Hello")
boxy.set_default_size(500,500)
actor_act = Gtk.Button("Click Here")
boxy.add(actor_act)
actor_act.connect("clicked", actor)
boxy.connect("destroy", Gtk.main_quit)
boxy.show_all()
Gtk.main()
最佳答案
Gtk.Button:
class: new_with_label (label)
Creates a GtkButton widget with a GtkLabel child containing the giventext.
Parameters: label #The text you want the GtkLabel to hold.
Returns: The newly created GtkButton widget.
Gtk.Button.new_with_label("Click Here")
关于python - PyGTK弃用警告 : What am I missing?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55816199/
我是一名优秀的程序员,十分优秀!