私が開発しているリビジョンアプリケーション内では、ユーザーの回答(その中から注目したいリビジョンの領域)を取り込み、特定の彼らが必要とする領域。ユーザー入力を受けてプログラムをロードする
これには入力ウィジェットが必要ですか?
これは私がこれまで持っているコードです:
instruction = tkinter.Label(roots, text= "'What would you like to revise?'\n")
instruction.grid(row=0, column=0,sticky=W)
if int(answer) != int(entryWidget.get().strip()):
tkMessageBox.showinfo("Answer", "INCORRECT!")
else:
tkMessageBox.showinfo("Answer", "CORRECT!")
私は、コードの不足をお詫び申し上げますが、私は私の別の部分をロードする方法を知らなくても、この時点を過ぎてそれを開発する方法についてはわかりませんよこの時点からコード
パート2:
def Signup():
global pwordE
global nameE
global roots
roots = tkinter.Tk()
roots.title("Computer Science Revision")
roots.geometry("1000x1000")
roots.wm_iconbitmap('favicon.ico')
roots.configure(background="#a1dbcd")
photo= tkinter.PhotoImage(roots,file="ryu.gif")
A = tkinter.Label(roots,image=photo)
A.pack()
roots = tkinter.Tk()
roots.title('Signup')
instruction = tkinter.Label(roots, text= 'Please enter new Credentials\n')
instruction.grid(row=0, column=0,sticky=W)
nameL = tkinter.Label(roots, text='New Username: ')
pwordL = tkinter.Label(roots, text='New Password: ')
nameL.grid(row=1, column=0, sticky=W)
pwordL.grid(row=2, column=0, sticky=W)
nameE= tkinter.Entry(roots)
pwordE = tkinter.Entry(roots, show='*')
nameE.grid(row=1, column=1)
pwordE.grid(row=2, column=1)
signupButton = Button(roots, text='Signup', command=FSSignup)
signupButton.grid(columnspan=2, sticky=W)
roots.mainloop()
roots.title("Computer Science Revision")
roots.geometry("1000x1000")
roots.wm_iconbitmap('favicon.ico')
roots.configure(background="#a1dbcd")
photo= tkinter.PhotoImage(roots,file="ryu.gif")
A = tkinter.Label(roots,image=photo)
A.pack()
この部分は、私はこの問題を解決することができますどのように、ログインの残りの部分とロードされませんか?
ユーザが興味のある研究分野を選択するためにエントリウィジェットとelif文を使用する方法や、履歴、科学、数学などの事前定義された領域を持つボタンボタンは、関連するインターフェースをオープン/生成します。 – Sithling
ユーザーはリビジョンの特定の領域のボタンを押すだけですか? – joe
はい、おそらくあなたはいくつかの異なる領域をコーディングしているので、アクセスしやすいボタンですべてのオプションを表示することは良いアイデアのようです。 – Sithling