Tagged Questions
1
vote
1answer
2k views
C# /windows forms: linking trackbar and textfield with a factor
linking a trackbar and a textfield is very easy in windows forms.
it is like this:
textBox.DataBindings.Add("Text", trackBar, "Value");
the problem is, that trackbars only allow for integer values ...
0
votes
1answer
415 views
binding textbox with trackbar and with field in class
Hi
I have problem with binding textbox with trackbar and with a property in class.
I bind a textbox.text property to field
`Progress`
in my object. Next I managed to bound property Value from ...