任何人都可以告訴我什麼屬性可以檢查以確定活動輸入法(即手寫,鍵盤等)? 基本上,我希望有像一些邏輯: if (inputMethod === "handwriting") {
//do this
} else {
//do that
}
或 if (handwriting.active) {
//do this
} else {
//do that
我試圖寫一個虛擬鍵盤PyQt5代碼。這是我的代碼。 from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
class InputState:
LOWER = 0
CAPITAL = 1
class KeyButton(QPushButton):
sigKeyButtonClicked = pyq