注册文件类型 unit regftyp; (*************************************************************************** This is a unit to handle filetyp-associations in Win ...
分类:
其他好文 时间:
2019-09-03 16:29:32
阅读次数:
116
一、ListView类 1、常用的基本属性: (1)FullRowSelect:设置是否行选择模式。(默认为false) 提示:只有在Details视图该属性才有意义。 (2) GridLines:设置行和列之间是否显示网格线。(默认为false)提示:只有在Details视图该属性才有意义。 (3 ...
vari:Integer;beginfori:=0toself.ComponentCount-1dobeginifSelf.Components[i]isTLabeledEditthenbeginwithSelf.Components[i]asTLabeledEditdobeginBevelEdges:=[beBottom];BevelInner:=bvNone;BevelKind:=bkSoft;BevelOuter:=bvRaised;BorderStyle:=bsNone;ParentColor:=Tr..
分类:
其他好文 时间:
2017-04-29 09:46:00
阅读次数:
129
直接上代码示例一: this.listView1.GridLines = true; //显示表格线 this.listView1.View = View.Details;//显示表格细节 this.listView1.LabelEdit = true...