I made a styled listbox in WPF, whenever someone clicks an element or presses an arrow key in my listbox, windows plays its "select sound".
This is not appropriate in this specific listbox, how can I disable it? Or how can I disable all the "default sounds" / system sounds that my WPF application makes?
After a lot of searching and trying to reproduce it in a test application; I figured out that it was actually a
Frame
control that caused the sound. I found an answer here Turn off navigation page sound in WPF Frame controlHowever that didn't work on all computers I tested it on. I'm replacing the
Frame
with aBorder
now since I don't need navigation.