I am using a DataRepeater control to show a popup. I am able to set BackColor of the current item by this code
private void dataRepeater1_CurrentItemIndexChanged(object sender, EventArgs e)
{
dataRepeater1.CurrentItem.BackColor = Color.Red;
}
but I am unable to add BackColor white for the previous item. Also I want to change the BackColor of the item form the list I am hovering mouse.
One way to solve this is to have one more property in your class, maybe called
DataRepeater1_PreviousItem: