-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitle_screen.py
42 lines (36 loc) · 1.24 KB
/
title_screen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# this makes the title screen!!!
from tkinter import *
class TitleScreen(Frame):
def __init__(self, master, next):
super(TitleScreen, self).__init__(master)
self.maingame = next
self.grid()
self.create_widgets()
def create_widgets(self):
Canvas(self, bg="#cc7130", width=370, height=300, bd=0, highlightthickness=0).grid(row=0, column=0,
columnspan=6, rowspan=6)
Label(self,
text = "ruvate.py",
font = "Fixedsys 60",
bg = "#cc7130"
).grid(row = 0, column = 0)
Button(self,
text = "Play!",
font = "Fixedsys 15",
command = self.cont,
bg = "#8B4513",
activebackground="#633310"
).grid(row = 1, column = 0)
Button(self,
text = "Quit",
font = "Fixedsys 15",
command = quit,
bg = "#8B4513",
activebackground="#633310"
).grid(row = 3, column = 0)
def cont(self):
self.maingame()
# root = Tk()
# root.title("Title")
# app = TitleScreen(root)
# root.mainloop()