|
| HXCGUI WINAPI | XAdTree_Create () |
| | 数据适配器树_创建 创建树元素数据适配器.数据适配器存储数据, UI对象根据绑定的字段名显示数据适配器中对应的数据; 更多...
|
| |
| int WINAPI | XAdTree_AddColumn (HXCGUI hAdapter, const wchar_t *pName) |
| | 数据适配器树_添加列 添加列. 更多...
|
| |
| int WINAPI | XAdTree_SetColumn (HXCGUI hAdapter, const wchar_t *pColName) |
| | 数据适配器树_置列 设置列. 更多...
|
| |
| int WINAPI | XAdTree_InsertItemText (HXCGUI hAdapter, const wchar_t *pValue, int nParentID, int insertID) |
| | 数据适配器树_插入项文本 插入项,数据填充到第一列. 更多...
|
| |
| int WINAPI | XAdTree_InsertItemTextEx (HXCGUI hAdapter, const wchar_t *pName, const wchar_t *pValue, int nParentID, int insertID) |
| | 数据适配器树_插入项文本扩展 插入项,数据填充到指定列. 更多...
|
| |
| int WINAPI | XAdTree_InsertItemImage (HXCGUI hAdapter, HIMAGE hImage, int nParentID, int insertID) |
| | 数据适配器树_插入项图片 插入项,数据填充到第一列. 更多...
|
| |
| int WINAPI | XAdTree_InsertItemImageEx (HXCGUI hAdapter, const wchar_t *pName, HIMAGE hImage, int nParentID, int insertID) |
| | 数据适配器树_插入项图片扩展 插入项,数据填充到指定列. 更多...
|
| |
| int WINAPI | XAdTree_GetCount (HXCGUI hAdapter) |
| | 数据适配器树_取项数量 获取项数量. 更多...
|
| |
| int WINAPI | XAdTree_GetCountColumn (HXCGUI hAdapter) |
| | 数据适配器树_取列数量 获取列数量. 更多...
|
| |
| BOOL WINAPI | XAdTree_SetItemText (HXCGUI hAdapter, int nID, int iColumn, const wchar_t *pValue) |
| | 数据适配器树_置项文本 设置项数据. 更多...
|
| |
| BOOL WINAPI | XAdTree_SetItemTextEx (HXCGUI hAdapter, int nID, const wchar_t *pName, const wchar_t *pValue) |
| | 数据适配器树_置项文本扩展 设置项文件内容. 更多...
|
| |
| BOOL WINAPI | XAdTree_SetItemImage (HXCGUI hAdapter, int nID, int iColumn, HIMAGE hImage) |
| | 数据适配器树_置项图片 设置项数据. 更多...
|
| |
| BOOL WINAPI | XAdTree_SetItemImageEx (HXCGUI hAdapter, int nID, const wchar_t *pName, HIMAGE hImage) |
| | 数据适配器树_置项图片扩展 设置项内容. 更多...
|
| |
| const wchar_t *WINAPI | XAdTree_GetItemText (HXCGUI hAdapter, int nID, int iColumn) |
| | 数据适配器树_取项文本 获取项文本内容. 更多...
|
| |
| const wchar_t *WINAPI | XAdTree_GetItemTextEx (HXCGUI hAdapter, int nID, const wchar_t *pName) |
| | 数据适配器树_取项文本扩展 获取项文本内容. 更多...
|
| |
| HIMAGE WINAPI | XAdTree_GetItemImage (HXCGUI hAdapter, int nID, int iColumn) |
| | 数据适配器树_取项图片 获取项内容. 更多...
|
| |
| HIMAGE WINAPI | XAdTree_GetItemImageEx (HXCGUI hAdapter, int nID, const wchar_t *pName) |
| | 数据适配器树_取项图片扩展 获取项内容. 更多...
|
| |
| BOOL WINAPI | XAdTree_DeleteItem (HXCGUI hAdapter, int nID) |
| | 数据适配器树_删除项 删除项. 更多...
|
| |
| void WINAPI | XAdTree_DeleteItemAll (HXCGUI hAdapter) |
| | 数据适配器树_删除项全部 删除所有项. 更多...
|
| |
| void WINAPI | XAdTree_DeleteColumnAll (HXCGUI hAdapter) |
| | 数据适配器树_删除列全部 删除所有列,并且清空数据. 更多...
|
| |