Skip to content

Caveman-Software/mygui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mygui 0.2.2

Caveman Software® 2022

lgrid

example:


import os
from tkinter import Tk

from mygui import egrid, lgrid

root = Tk()
root.minsize(300, 100)
lgrid(root, 'Label placed in grid 0,0', 0, 0)
lgrid(root, 'Label placed in grid 0,1', 0, 1)
egrid(root, 1, 0)
root.mainloop()

egrid


import os
from tkinter import Tk,Entry
from mygui import egrid, lgrid

root = Tk()
root.minsize(300, 100)
egrid(root,0,0)
root.mainloop()

About

A label specific module to place a label anywhere on a grid simplified.

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages