Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I make a read-only TextBox ignore the MouseDown event so the user can scroll the text or set the cursor?

0
Posted

How do I make a read-only TextBox ignore the MouseDown event so the user can scroll the text or set the cursor?

0

You can do this by deriving the TextBox, overriding the WndProc method and ignoring these mouse down messages. [C#] public class CustomTextBox : TextBox { protected override void WndProc( ref Message m ) { // WM_NCLBUTTONDOWN WM_LBUTTONDOWN if ( !( ReadOnly…

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123