|
发表于 2008-6-24 15:58:02
|
显示全部楼层
这个属性为true后,将会用OnDrawItem替代默认的绘制动作。下面是delphi的解释:
Specifies whether the list view receives an OnDrawItem event.
property OwnerDraw: Boolean;
Description
Set OwnerDraw to True to allow the list view to receive the OnDrawItem event instead of the default rendering of list items.
Note: This property is independent of the custom draw events such as OnCustomDraw, OnCustomDrawItem, OnAdvancedCustomDraw, and so on. The custom draw events always occur. |
|