Questions tagged «system-sounds»

15
按Enter时停止“ Ding”
我有一个非常简单的Windows窗体应用程序。并且,在Windows(或至少Windows Forms应用程序)中,当您在单行TextBox控件内按Enter时,您会听到叮叮。这是一种令人不愉快的声音,表明您不能输入换行符,因为它是单行的TextBox。 一切都很好。但是,在我的窗体中,我有1个文本框和一个搜索按钮。而且我允许用户通过按Enter他们已经完成键入之后,所以他们不执行搜索必须使用鼠标单击搜索按钮。 但是这种叮sound的声音发生了。真烦人 我们如何才能使声音完全不在我的Form中播放? @David H-这是我检测回车的方式: private void textBox1_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { // Perform search now. } }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.