Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
904 views
in Technique[技术] by (71.8m points)

change value from texbox with scrollbar in xaml .NET FrameWork

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...