How to make simple bill maker by using python tkinter from tkinter import * from tkinter import ttk from tkinter import messagebox import os , sys import tempfile class Store : def __init__ ( self , window ): self . win = window self . categories =[ "Kurti" , "Legis" , "Shirt" , "Jeans" ] self . kurti =[ "Kurti1" , "Kurt2" , "Kurt3" , "Kurt4" ] self . legis =[ "Legis1" , "Legis2" , "Legis3" , "Legis4" ] self . shirt =[ "Shirt1" , "Shirt2" , "Shirt3" , "Shirt4" ] self . jeans =[ "Jeans1" , "Jeans2" , "Jeans3" , "Jeans4" ] #Create Variable self . cname = StringVar () self . cmob = StringVar () self . cbill = StringVar () self . price = IntVar () ...
Comments
Post a Comment