9 instantiations of SettableState
PresentationFramework (9)
System\Windows\Controls\AVElementHelper.cs (9)
57_position = new SettableState<TimeSpan>(new TimeSpan(0)); 62_mediaState = new SettableState<MediaState>(MediaState.Close); 64_source = new SettableState<Uri>(null); 66_clock = new SettableState<MediaClock>(null); 68_speedRatio = new SettableState<double>(1.0); 70_volume = new SettableState<double>(0.5); 72_isMuted = new SettableState<bool>(false); 74_balance = new SettableState<double>(0.0); 76_isScrubbingEnabled = new SettableState<bool>(false);
9 references to SettableState
PresentationFramework (9)
System\Windows\Controls\AVElementHelper.cs (9)
854SettableState<TimeSpan> _position; 855SettableState<MediaState> _mediaState; 856SettableState<Uri> _source; 857SettableState<MediaClock> _clock; 858SettableState<double> _speedRatio; 859SettableState<double> _volume; 860SettableState<bool> _isMuted; 861SettableState<double> _balance; 862SettableState<bool> _isScrubbingEnabled;