TreeViewItem ltvi_Current
THIS.GetItem(handle,ltvi_Current) 这个语句的作用是什么
------解决方案--------------------
是将指定的handle 项的数据放在 ltvi_Current 变量中
------解决方案--------------------
把treeview里的项取到treeviewitem里
然后你就可以引用ltvi_current.label 显示值等信息
------解决方案--------------------
TreeViewItem ltvi_Current
THIS.GetItem(handle,ltvi_Current)
功能:得到指定句柄完整列表项
语法:tv.getitem(handle,item)
参数:handle 要得到完整信息的列表项的句柄
ltvi_Currenttreeviewitem类型变量,用于保存handle参数指定列表项的完整信息
ltvi_Current可以得到指定列表项的完整信息,比如标题、句柄,使用的图片索引等
------解决方案--------------------
TreeViewItem ltvi_Current
\\说明一个树形试图数据项的变量 ltvi current
THIS.GetItem(handle,ltvi_Current)
\\将指定项的所有数据放到TreeviewItem变量ltvi_Current 中