将用户鼠标移动到 ok/cancel 按钮的好习惯?

Good practice to move users mouse to ok/cancel buttons?

移动用户鼠标是否被认为是好的做法?

例如,在安装程序中,将其移动到 nextagree 按钮。或者在 VLC 的情况下,将其移动到 cancel 按钮。

我建议不要这样做,因为用户可能会点击不需要的按钮。我从未在商业软件中见过这种用户体验。

通常,软件会为用户提供以 Alt 开头的键盘组合来触发按钮(例如 "Alt + O" 表示确定)。通常,当用户按下 Alt 时,OK 的 O 会带有下划线,提示存在这样的功能。 This is often implementable implicitly as a Mnemonic in the dialog's engine (e.g. Java Swing).