public void OnHoverRowChanged(DiffViewEventArgs <FastGridControl> e, HoverRowChangedEventArgs he)
        {
            foreach (var grid in e.Container.ResolveAll <FastGridControl>())
            {
                if (e.Sender == grid)
                {
                    continue;
                }

                grid.SetHoverRow(he.Cell);
            }
        }
示例#2
0
 public void DispatchHoverRowChangeEvent(DiffViewEventArgs <FastGridControl> e, HoverRowChangedEventArgs he)
 {
     Dispatch((l) => l.OnHoverRowChanged(e, he), e);
 }