45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
from tkinter import *
|
|
###############################################################################
|
|
# Fonctions de la fenêtre 1
|
|
###############################################################################
|
|
def start_game():
|
|
print('lol')
|
|
fen1.quit()
|
|
fen2.mainloop()
|
|
|
|
###############################################################################
|
|
# Définition de la fenêtre 1
|
|
###############################################################################
|
|
fen1=Tk()
|
|
fen1.title("Accueil")
|
|
|
|
t1=Label(fen1,text="")
|
|
t1.grid(row=0,column=0)
|
|
|
|
j1=Entry(fen1,bg="grey",bd=4)
|
|
j1.grid(row=2,column=0)
|
|
|
|
b1=Button(fen1,text="entrer", command=start_game)
|
|
b1.grid(row=2,column=1)
|
|
|
|
|
|
|
|
###############################################################################
|
|
# Définition de la fenêtre 1
|
|
###############################################################################
|
|
|
|
fen2=Tk()
|
|
fen2.title("Page de jeu")
|
|
|
|
b1=Button(fen2,text="PIERRE")
|
|
b1.grid(row=2,column=1)
|
|
|
|
b2=Button(fen2,text="FEUILLE")
|
|
b2.grid(row=2,column=2)
|
|
|
|
b3=Button(fen2,text="CISEAUX", command=fen2.quit)
|
|
b3.grid(row=2,column=3)
|
|
|
|
if __name__ == '__main__':
|
|
fen1.mainloop()
|