-
Notifications
You must be signed in to change notification settings - Fork 7
Coding tips
Bernd Klein edited this page Nov 6, 2018
·
16 revisions
Since version 0.10 it is possible to use tooltips for entry widgets. See below code snippet
`w99 = FloatEntry(self.frmButtonsIndividualContent, width=10,
textvariable=self.__safety_Z, mandatory=False)
w99.grid(row=row, column=3, sticky=W) ToolTip(w99, text="move Z to this value if finished")
`