Make your new event public and use ObsoleteAttribute with two parameters. In this case compiler will return an error when somebody try to use this event.
[Obsolete("SelectedIndexChanged is obsolete. Use MyNewEvent instead.", true)]
public new event EventHandler SelectedIndexChanged;