码迷,mamicode.com
首页 >  
搜索关键字:subitems    ( 33个结果
ListView在delphi中的常用用法
ListView在delphi中的常用用法 //增加 i := ListView1.Items.Count; with ListView1 do begin ListItem:=Items.Add; ListItem.Caption:=IntToStr(i); ListItem.SubItems.A ...
分类:Windows程序   时间:2020-12-17 12:43:52    阅读次数:6
C# 使用ListView.CheckedItems慢的问题
看一段代码: List<string> list = new List<string>(); for (int i = 0; i < lstView.CheckedIndices.Count; i++) { list.Add(lstView.CheckedItems[i].SubItems[1].T ...
分类:Windows程序   时间:2020-04-23 12:08:19    阅读次数:108
无聊学习一下MVP这个概念
记录一下学习 MVP: M:业务逻辑 V:页面 P:页面逻辑 ,充当 页面和业务逻辑的中间层 规则:V和M不能直接接触,由P来做中间人 调用流程:V 去调用P,P去调用M,P调用M完成后,P调用V改变页面(这里为了保证P调用V不出错,使用了接口,规定V必须实现的方法) 建立四个库: 1 M :业务逻 ...
分类:其他好文   时间:2019-11-21 22:37:25    阅读次数:101
GP下CalculateField的用法
以前用过这个类做字段计算,许久不用有些忘却,记录一下使用方式 public static void CalculateField(IFeatureLayer featureLayer,IField field,string expression) { Geoprocessor gp = new Ge ...
分类:其他好文   时间:2019-07-05 00:20:46    阅读次数:88
窗体效果
1编辑列添加 2编辑项添加 3:编辑项里的subItems添加启用项的复选框checkbox 选择多行 当项被选中时所有子项是否一起被选中 是否显示线注意分组后不显示 ...
分类:Windows程序   时间:2019-05-19 19:26:01    阅读次数:174
获取系统特殊文件夹路径
实现效果: 知识运用: Environment类的GetFolderPath方法 //获取指向由枚举标识的系统特殊文件夹的路径 public static string GetFolderPath (Environment.SpecialFolder folder) 实现代码: ...
分类:其他好文   时间:2019-01-21 13:48:26    阅读次数:149
C#listview 中item背景颜色的设置
1.将ListView的每一项的UseItemStyleForSubItems属性设置为false 2.item.SubItems[4].BackColor = Color.Green;设置某一行某一列的颜色为绿色 代码实现 ...
分类:Windows程序   时间:2018-11-27 19:24:37    阅读次数:581
ListView在WinForm中多用于表的构建
ListView在WinForm中多用于表的构建,可以直观的显示表的信息,其格式如同SQL的表 这是他的位置,在公共控件中: Listview的几个重要属性:Columms(集合)、Groups(集合)、Items(集合)、View(视图)、以及Items中的SubItems(集合) 其中View共 ...
分类:Windows程序   时间:2018-02-12 11:15:44    阅读次数:252
循环遍历listview 控件中Subitems 值
I was wanting to be able to iterate through each of my ListViews sub items and get the value from each. I have tried various things but am finding it ...
分类:其他好文   时间:2017-12-05 00:57:14    阅读次数:154
使用ListView控件展示数据
imagelist控件用来存放使用的图像对象集合 1.图像列表imagelist的属性 先设置colordepth imagesize属性值再添加图片,反之不能更改这两个属性值 2.listView items(项的集合)>listViewItem(列表项)> subItems(子项)>listvi ...
分类:其他好文   时间:2017-11-08 22:24:03    阅读次数:195
33条   1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!