我正在做一个包含虚拟键盘的 wpf 应用程序,当我点击 CapsLock 按钮时,我有这个通知:
Possibility of comparing references involuntary for a comparison of values, cast the left hand side to type 'string'
在这一行:
if (btnVK_A.Content == "a")
btnVK_A.Content = "A";
else
btnVK_A.Content = "a";
我做了转换btnVK_A.Content
为字符串,但通知仍然出现。那么我该如何解决这个问题呢?