()
| 669 | } |
| 670 | |
| 671 | func (tv *TableView) redrawItems() { |
| 672 | first := win.SendMessage(tv.hwndNormalLV, win.LVM_GETTOPINDEX, 0, 0) |
| 673 | last := first + win.SendMessage(tv.hwndNormalLV, win.LVM_GETCOUNTPERPAGE, 0, 0) + 1 |
| 674 | win.SendMessage(tv.hwndFrozenLV, win.LVM_REDRAWITEMS, first, last) |
| 675 | win.SendMessage(tv.hwndNormalLV, win.LVM_REDRAWITEMS, first, last) |
| 676 | } |
| 677 | |
| 678 | // UpdateItem ensures the item at index will be redrawn. |
| 679 | // |
no test coverage detected