关于软件中有意义的消息

Yig*_* Wu 1 user-interface messages

我很困惑如何为我的SW写好消息.如下所示:

"要保存项目,请单击"保存"按钮.要取消它,请单击"取消"按钮."

但我认为它真的没用,你对如何写有意义的信息有什么评论吗?

Ste*_*ger 7

就个人而言,我喜欢不需要解释的消息.Windows应用程序的第一个错误是具有标准文本的按钮而不是按下时执行的操作.

示例:而不是:

Do you want to save the changes before closing?
- To save the changes press Yes
- To discard the changes press No
- To cancel and keep the application open press Cancel
[Yes] [No] [Cancel]
Run Code Online (Sandbox Code Playgroud)

我喜欢

Do you want to save the changes before closing?
[Save] [Discard] [Cancel]
Run Code Online (Sandbox Code Playgroud)

  • 用户经常不读这个问题.尽可能多地假设按钮文本*动作*不是答案. (2认同)