上一页 1 ··· 4 5 6 7 8
摘要: TableLayoutPanel 类 注意:此类在 .NET Framework 2.0 版中是新增的。 表示一个面板,它可以在一个由行和列组成的网格中对其内容进行动态布局。 命名空间:System.Windows.Forms 程序集:System.Windows.Forms(在 system.windows.forms.dll 中) 语法 Visual Basic(声明) ... 阅读全文
posted @ 2009-03-12 12:04 WillWayer 阅读(9526) 评论(0) 推荐(0) 编辑
摘要: ttp://bbs.esrichina-bj.cn/ESRI/thread-39785-1-1.html 本文对featureclass中插入和删除feature的几种方法进行了比较。 一、插入单个feature,方法1和方法2差别不大 方法1: ''' ''' 向featureclass中插入feature ''' ''' 要插入的featureclass ''' Pr... 阅读全文
posted @ 2009-03-12 11:11 WillWayer 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 1、什么是ArrayList ArrayList就是传说中的动态数组,用MSDN中的说法,就是Array的复杂版本,它提供了如下一些好处: 动态的增加和减少元素 实现了ICollection和IList接口 灵活的设置数组的大小 2、如何使用ArrayList 最简单的例子: ArrayList List = new ArrayList(); for(... 阅读全文
posted @ 2009-03-12 10:37 WillWayer 阅读(328) 评论(1) 推荐(0) 编辑
摘要: -- 判断控件类型 1、可用控件的GetType函数,control.gettype().tostring,输出的类型带命名空间,如system.web.ui.webcontrols.button 2、也可用TypeName函数,typename(control),输出的类型不带命名空间,如button控件直接输出button类型 3、Code Co... 阅读全文
posted @ 2009-03-11 16:52 WillWayer 阅读(11868) 评论(0) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8