public class CustomListBox : RadListBox{ protected override bool HandleKeyboardInput(Key key) { if (key == Key.Space) { return false; } return base.HandleKeyboardInput(key); }}