本文整理汇总了Python中swampy.Gui.bind方法的典型用法代码示例。如果您正苦于以下问题:Python Gui.bind方法的具体用法?Python Gui.bind怎么用?Python Gui.bind使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类swampy.Gui
的用法示例。
在下文中一共展示了Gui.bind方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: ques_pos
# 需要导入模块: from swampy import Gui [as 别名]
# 或者: from swampy.Gui import bind [as 别名]
presuf=sample(list2, 4)[:]
r=randint(1,2)
if r==1:
ques_pos()
elif r==2:
ques_neg()
def close(event=NONE):
if tkMessageBox.askyesno("Quit","Do You Want To Quit???"):
p.destroy()
p=Gui()
p.title('Sentiment Analysis')
p.geometry(newGeometry='700x500')
fr=p.fr()
canint=p.ca(bg='green')
imag=Image.open('pic1.jpg')
imag2=ImageTk.PhotoImage(imag)
canint.image([300,-200],image=imag2)
canint.image=imag2
var=IntVar(0)
var2=IntVar(0)
but1=p.bu('YES',command=start,font=('bold',15), bg='red', fg='white', activebackground='white',activeforeground='red',bd=8).place(x=175,y=370, height=50, width=80)
p.bind('y',start)
but2=p.bu('NO',command=close,font=('bold',15), bg='red', fg='white', activebackground='white',activeforeground='red',bd=8).place(x=450,y=370, height=50, width=80)
item1=canint.create_text(350,140,text="\nWelcome!!!\n Hope You Had A Great Day Till Now.\nIf Not, We Are Gonna Make It Great With This Program!!!\n\n\nSo Shall We Begin???",font=('BOOKMAN OLD STYLE',17,'bold'),justify=CENTER,fill='white')
p.bind('n',close)
p.mainloop()