private void EtaSlider_Release(object sender, MouseButtonEventArgs e) { EtaFadeout.Begin(); if (EtaSliderControl.Value != previous) { if (UpdateEvent != null) { UpdateEvent(this, new SliderEventArgs { Value = Slider.Distance() }); } } }
private void EtaSliderFocus(object sender, MouseEventArgs e) { previous = EtaSliderControl.Value; EtaFadeout.Stop(); EtaBubble.Opacity = 1; }