I have a textbox with the following (important) properties:
this.license.Multiline = true; this.license.ReadOnly = true; this.license.ScrollBars = System.Win
Since the standard TextBox doesn't have the SelectionChanged event, here's what I came up with.
private void TextBox1_MouseMove(object sender, MouseEventArgs e) { TextBox1.SelectionLength = 0; }