-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
66 lines (54 loc) · 1.36 KB
/
test.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from tkinter import *
import tkinter as tk
from tkinter import ttk
def btn_clicked():
print("Button Clicked")
window = Tk()
window.geometry("436x896")
window.configure(bg = "#FFFFFF")
canvas = Canvas(
window,
bg = "#FFFFFF",
height = 896,
width = 436,
bd = 0,
highlightthickness = 0,
relief = "ridge")
canvas.place(x = 0, y = 0)
canvas.create_text(
2207.5, -1918.5,
text = "Item Id",
fill = "#ffffff",
font = ("Montserrat-Bold", int(18.0)))
canvas.create_text(
2126.5, -2006.5,
text = "Category",
fill = "#ffffff",
font = ("Montserrat-Bold", int(18.0)))
canvas.create_text(
2302.5, -2006.5,
text = "Model",
fill = "#ffffff",
font = ("Montserrat-Bold", int(18.0)))
canvas.create_text(
2207.5, -1918.5,
text = "Item Id",
fill = "#ffffff",
font = ("Montserrat-Bold", int(18.0)))
canvas.create_text(
2207.5, -1918.5,
text = "Item Id",
fill = "#ffffff",
font = ("Montserrat-Bold", int(18.0)))
canvas.create_text(
2204.0, -2137.5,
text = "Product Search",
fill = "#000000",
font = ("Montserrat-Regular", int(48.0)))
canvas.create_text(
2210.0, -2080.5,
text = "Search via",
fill = "#000000",
font = ("Montserrat-Regular", int(24.0)))
window.resizable(False, False)
window.mainloop()