나는 코드 나, pango와 범위 속성이 괜찮 명령 옵션을 포함하지 않는 알고PyGTK 라벨의 클릭 가능한 텍스트마다 다른 콜백을 바인딩하는 방법은 무엇입니까?
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk as gtk
from gi.repository import Gdk as gdk
def hello(*args):
print "hello, this is most used text editor for pyton"
def wellcome(*args):
print "wellcome to the our program please update to premium version"
w = gtk.Window(title = "example", type = gtk.WindowType.TOPLEVEL)
w.resize(300, 200)
mylabel = gtk.Label()
mylabel.set_markup("""please read """
"""<span underline = "single" command = "hello">hello</span> or """
"""<span underline = "single" command = "wellcome">wellcome</span>""")
w.add(mylabel)
w.show_all()
gtk.main()
다음에 예를 들어
라벨
의 텍스트에 콜백을 연결합니다. 그것을 할 다른 방법이 있습니까?
는 두'의 Gtk.Button's를 사용하고의'clicked' 신호에 연결해야합니다. – elya5
@ elya5, 내가 예를 들어 줄 수 있니? –