为CListCtrl生成绑定表的列头.cmt 574 B

1234567891011121314151617181920212223
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
  6. #>
  7. // 生成与注释绑定的list列头;
  8. void InitCtrlList()
  9. {
  10. CListCtrl *pList = new CListCtrl();
  11. INT nIndex = 0;
  12. <# foreach (ColumnInfo c in host.Fieldlist) { #>
  13. pList.InsertColumn(nIndex,_T("<#= c.Description.ToString().ToLower() #>"));
  14. pList.SetColumnWidth(nIndex,80);
  15. nIndex++;
  16. <# } #>
  17. pList.SetExtendedStyle(pList.GetExtendedStyle() | LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT);
  18. }