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