()
| 662 | } |
| 663 | |
| 664 | func (tv *TableView) Invalidate() error { |
| 665 | win.InvalidateRect(tv.hwndFrozenLV, nil, true) |
| 666 | win.InvalidateRect(tv.hwndNormalLV, nil, true) |
| 667 | |
| 668 | return tv.WidgetBase.Invalidate() |
| 669 | } |
| 670 | |
| 671 | func (tv *TableView) redrawItems() { |
| 672 | first := win.SendMessage(tv.hwndNormalLV, win.LVM_GETTOPINDEX, 0, 0) |
no test coverage detected