Hi ww kk,
Thank you for posting on the Q&A forum.
It is recommended to send suggestions or report problems to Microsoft with the Feedback Hub app.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When you create a text-widget with tkinter, as shown in the simple Python code below, when you input the keyboard '-', '.' in Korean mode(Korean three-set keyboard, 한글 세벌식 자판, Hangul Sebulsik), the same characters cannot be entered.
If you press '-', there is no response, and if you press '.', it has the effect of pressing the delete key.
It works fine in English mode. It also works well when using a Korean two-set keyboard(한글 두벌식 자판).
Of course, you can change it to English mode and use '-', '.' You can input the same characters, but it is very inconvenient.
The same problem goes for both the Korean three-set 390 keyboard(한글 세벌식 390) and the Korean three-set final keyboard(한글 세벌식 최종).
Even in Korean three-set keyboard, '-', '.' in Python tkinter. We would like to ask for improvements so that the same characters can be entered easily.
import tkinter as tk
root = tk.Tk()
text_widget = tk.Text(root, wrap="word")
text_widget.pack(expand=True, fill="both")
root.mainloop()
Hi ww kk,
Thank you for posting on the Q&A forum.
It is recommended to send suggestions or report problems to Microsoft with the Feedback Hub app.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.