def BatchAdd(): #?? ?? ??
def selectBatch(): #?? ?? ?? ?? ??
ans = batchChoice.get()
if ans == 'g':
GallBatch()
#elif ans == 'i': #????? ?? ???? ?? ???? (??? AnalyzePage?? ???)
# InstaBatch()
# elif ans == 't': #??? ?? ???? ?? ????
# TwitterBatch()
elif ans == 'b':
TistoryBatch()
elif ans == 'p':
NaverPostBatch()
batchAddRoot.destroy()
batchAddRoot = Toplevel()
batchChoice = StringVar()
batchChoice.set('g')
radioTexts = [['?????? ??? (??? ??)','g'],
#['?????','i'],
['???? ???','b'],
['??? ???','p']
]
ttk.Label(batchAddRoot, text='?? ??? ???? ??????.').pack(padx=GUI_PARAM['LabelPadX'],pady=GUI_PARAM['LabelPadY'])
for text, code in radioTexts:
ttk.Radiobutton(batchAddRoot, text=text, variable = batchChoice, value = code).pack(padx=GUI_PARAM['LabelPadX'],anchor=W)
ttk.Button(batchAddRoot,text='??',command=selectBatch).pack(padx=GUI_PARAM['ButtonPadX'],pady=GUI_PARAM['ButtonPadY'])
#### ?? ?? ?? (tree) ?? ?? ####
评论列表
文章目录