xamarin.forms - Xamarin Form how slider write in ViewModel after n millisecond -


i ask best approach solving problem. have slider allows change value in viewmodel.

<label text="{x:static resources:resource.frequency}" grid.row="1" grid.column="0" horizontaloptions="start" verticaloptions="center" grid.columnspan="2" /> <vm:sliderx maximum="{binding path=maxcyclicfrequency}" accuratevalue="{binding path=cyclicservosfrequency, mode=twoway}" grid.column="0" grid.row="2" grid.columnspan="3"  x:name="sldmaxcyclicfrequency" /> <entry text="{binding path=cyclicservosfrequency, mode=oneway, stringformat='{}{0:f0}hz'}}" isenabled="true" grid.column="2" grid.row="1" keyboard="numeric" unfocused="setmaxcyclicfrequency" x:name="entmaxcyclicfrequency" ></entry> 

i wish slider write value in entry in real time, wrote value in viewmodel after n milliseconds since last change of value. avoid writing many times in viewmodel.

it's possible?

thanks


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -