def init_searchInputLabel():
global Input_search
fontemp = font.Font(sc_Frame, size=12, weight='bold')
searchLabel = Label(sc_Frame, font=fontemp, text="?? ?? ??", bg = 'grey')
searchLabel.place(x=65, y=10)
Input_search = Entry(sc_Frame, font=fontemp, width=20, borderwidth=3, relief='ridge')
Input_search.place(x=20, y=40)
fontemp = font.Font(sc_Frame, size=12, weight='bold')
sButton = Button(sc_Frame, font=fontemp, text="??", command=lambda : get_search())
sButton.place(x=220, y=37)
评论列表
文章目录