Request for improvement of three-set Korean input problem in Windows 10 Python tkinter

ww kk 0 Reputation points
2024-01-08T23:11:42.6566667+00:00

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()

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
12,056 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ian Xue 39,456 Reputation points Microsoft Vendor
    2024-01-09T08:05:43.6566667+00:00

    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.

    https://support.microsoft.com/en-us/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332

    Best Regards,

    Ian Xue


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.