Reputation: 11
I want to disable the textbox control and control the numeric input to the text box control using vertical scroll bar. How can I do that?
Upvotes: 1
Views: 623
Reputation: 112815
It doesn't sound like TextBox
is the right control to be using; seems like you want something more like this:
If you're using Windows Forms, you can use the NumericUpDown
control.
If you're using WPF, this question has several options listed.
Upvotes: 3