This topic is an overview of the HotTracking feature and provides a code example demonstrating how to enable HotTracking appearance on rows in GroupBy mode.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
HotTracking visually enhances UI elements when the mouse point passes over them. In this case, the UI elements are the grouped by rows and based on your settings via GroupByRowHotTrackAppearance property displays the result with a highlighted appearance. The WinGrid™ introduces the UltraGridOverride object’s GroupByRowHotTrackAppearance property allowing you to define the appearance of HotTracked items in grouped rows.
Setting the HotTracking appearance in code.
In C#:
ultraGrid1.DisplayLayout.Override.GroupByRowHotTrackAppearance.BackColor = Color.LightSkyBlue;
In Visual Basic:
ultraGrid1.DisplayLayout.Override.GroupByRowHotTrackAppearance.BackColor = Color.LightSkyBlue
The following topics provide additional information related to this topic.