worked on grid configure weights

This commit is contained in:
paul
2025-03-24 15:50:46 +05:30
parent 1912e53672
commit 8b386e3263
12 changed files with 301 additions and 697 deletions

View File

@@ -46,7 +46,8 @@ class TopLevel extends Widget{
return [
`${variableName} = tk.Toplevel(master=${parent})`,
`${variableName}.config(bg="${backgroundColor}")`,
`${variableName}.title("${this.getAttrValue("title")}")`
`${variableName}.title("${this.getAttrValue("title")}")`,
...this.getGridLayoutConfigurationCode(variableName)
]
}