public void RedrawFocusedItem() { if (LV.FocusedItem != null) { int focusedIndex = LV.FocusedItem.Index; LV.RedrawItems(focusedIndex, focusedIndex, false); } }
public void RedrawItem(int index) { LV.RedrawItems(index, index, true); }