In C# WinForms, I have a custom RichTextBox where I handle middle-mouse scrolling by myself. When it's done, I want to show my own cursor. I switch to this cursor in the MouseDown event, when the middle button is pressed.
void richText_MouseDown(object sender, MouseEventArgs e) {
if (e.Button == MouseButtons.Middle) {
Cursor.Current = MainForm.cursors["hand_NS"];
}
}
However, the text box then instantly switches to the Windows "arrow" cursor. This seems to be part of the RichTextBox autom. behavior, either in MouseDown or in MouseMove. I can override this by constantly showing my cursor in MouseMove, but it looks flickery, as the two cursors fight each other. Can I block this automatic switch to the "arrow" cursor somehow?
EDIT: Tried setting the Cursor property:
void richText_MouseDown(object sender, MouseEventArgs e) {
if (e.Button == MouseButtons.Middle) {
richText.Cursor = MainForm.cursors["hand_NS"];
//Cursor.Current = MainForm.cursors["hand_NS"];
}
}
Restoring the I-beam cursor:
void richText_MouseUp(object sender, MouseEventArgs e) {
if (e.Button == MouseButtons.Middle) {
richText.Cursor = Cursors.IBeam;
//Cursor.Current = Cursors.IBeam;
}
}
Finally got it to work decently (virtually no flicker) by throwing at it all the artillery I could find. What's done in MouseMove (below) is also done in MouseDown.
Overriding the SETCURSOR message in the RTB control:
Sources:
ListView Cursor changing & flickering
Mouse cursor flickers over selected text - how to prevent this?