Firstly I am assuming DependencyProperty is what to use but I could be wrong - Maybe a INotifyPropertyChanged is more suitable?
I have a few UI controls that are all associated to audio playback. I would like to bind the Volume and Track Seek Sliders to a couple of doubles.
- The volume slider will update the audio classes Volume variable when the Value is updated
- The Track Seeking slider MaxValue will be set to the duration of the track in milliseconds and will update the seeking position variable of my audio playback class
New to Dependency properties and such so you help is much appreciated!