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