Пример #1
0
 public void HotChanged(int i)
 {
     if (i >= 0)
     {
         var r = _tv.GetRectPhysical(i, TVParts.Text, clampX: true);
         if (_tv._avi[i].measured > r.Width)
         {
             _timer ??= new timer(_Show);
             _avi = _tv._avi; _i = i;
             _timer.After(300);
             return;
         }
     }
     Hide();
 }