8
Answers

Creating an animated line using WPF

Photo of Matt

Matt

7y
305
1
I would like to create an animated line using WPF where a different segment is shown depending on the option that is selected -- like the one on the BMW website:
 
https://www.bmwusa.com/byo.html#!/build/color/dflf5yci
 
On this website, when the user selects different options the animated line moves to the corresponding selection.  If the newly selected option is further away, it accelerates more to get there faster.
 
What control would I use in WPF to achieve this? 
 

Answers (8)

0
Photo of Abie Jose
NA 17 39.3k 13y
Using a Query string you can pass values of current page's control to another page


Response.Redirect("SecondPage.aspx?value1="& Textbox1.text &" &value2 = "& Textbox2.text &" ")


and in the secondpage.aspx you can retrieve this value with the following code

request.querystring("Value1")