主题:如何解除ListView1控件与ImageList控件的绑定?
一江秋水
[专家分:9680] 发布于 2008-08-22 14:34:00
我在代码中用ListView1.SmallIcons = ImageList1 将这两个控件绑定,并以Add方法向ImageList控件添加图标,但是清除ImageList控件中图片时,用Clear竟然清除不了,在网上查了一下,说是要先解除绑定才能清除,但不知用什么方法解除绑定?网上查不到,请高手赐教,先谢了。
回复列表 (共2个回复)
沙发
snyga [专家分:1480] 发布于 2008-08-23 09:24:00
'建立关联(小图标),ImageList1要预先载入图片
Set Me.ListView1.SmallIcons = Me.ImageList1
'断开关联(小图标)
Set Me.ListView1.SmallIcons = Nothing
'建立关联(普通),ImageList1要预先载入图片
Set Me.ListView1.Icons = Me.ImageList1
'断开关联(普通)
Set Me.ListView1.Icons = Nothing
'建立关联(列标头),ImageList1要预先载入图片
Set Me.ListView1.ColumnHeaderIcons = Me.ImageList1
'断开关联(列标头)
Set Me.ListView1.ColumnHeaderIcons = Nothing
板凳
一江秋水 [专家分:9680] 发布于 2008-08-23 14:03:00
就是这一句了:Set ListView1.SmallIcons = Nothing
试验成功,非常感谢!
我来回复