I am using Python Tkinter library to build my UI, and my question is as follow:
I want to display windows 8 touch keyboard when an entry is clicked. Currently the only way to type in the entry is to either use a physical keyboard, or have a built-in keyboard.
For example, I have the following:
addressInput = tk.Entry(self, font = "Verdana 20 ", justify="center")
Do i need to add a command to would force the keyboard to popup? If so, how would this work.
Any help would be greatly appreciated.