1234567891011121314151617181920212223 |
- <#@ template language="c#" HostSpecific="True" #>
- <#@ output extension= ".cs" #>
- <#
- TableHost host = (TableHost)(Host);
- host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
- #>
- // 生成与注释绑定的list列头;
- void InitCtrlList()
- {
- CListCtrl *pList = new CListCtrl();
- INT nIndex = 0;
-
- <# foreach (ColumnInfo c in host.Fieldlist) { #>
- pList.InsertColumn(nIndex,_T("<#= c.Description.ToString().ToLower() #>"));
- pList.SetColumnWidth(nIndex,80);
- nIndex++;
-
- <# } #>
- pList.SetExtendedStyle(pList.GetExtendedStyle() | LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT);
- }
|