Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've got a textBox with a overlaid scrollbar and I want to change the values from the textbox with the scrollbar. Imagine you are selecting a color and want to go throw 0 to 255 with the arrows of the scrollbar. How can I do that?

question from:https://stackoverflow.com/questions/65925886/change-value-from-texbox-with-scrollbar-in-xaml-net-framework

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
929 views
Welcome To Ask or Share your Answers For Others

1 Answer

I would use a Slider for that, because it does exactly what you want. Controlling values with a "thumb" that you can move to scale.

Edit: You can also do it with a Scrollbar by subscribing to its events that are fired when the scroll postition changes and then change the value in the text box accordingly.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...