I've am new to Tkinter and have written a program to open a file and parse binary messages.
I am struggling on how best to display the results. My parsing class will have 300+ entries and I want something similar to a table.
var1Label : var1Val
var2Label : var2Val
I have played around with these widgets but have not gotten anything that I can be proud of: Label, Text, Message and probably others.
So I'd like the Labels to be justify Right, and the Var's to be justify left or anything else that would that would be a good idea on how to make this an attractive display, like having all the ':' aligned. The size of the Var's will be between 0-15 characters.
I'm using python 2.7.2 on windows.
Here's the grid method I was trying with dummy variables
self.lbVar1 = Label(self.pnDetails1, text="Var Desc:", justify=RIGHT, bd=1)
self.lbVar1.grid(sticky=N+W)
self.sVar1 = StringVar( value = self.binaryParseClass.Var1 )
self.Var1 = Label(self.pnDetails1, textvariable=self.sVar1)
self.Var1.grid(row=0, column=1, sticky=N+E)