guoguogis

  :: :: 新随笔 :: :: :: 管理 ::

2010年4月11日

摘要: System 库:System 库是ArcGIS 结构中最低级的对象库。该库包含了揭示ArcGIS 中其他对象库所使用的服务的组件。SystemUI 库:SystemUI 库主要定义了ArcGIS 系统中所使用的用户界面组件的类型。Geometry 库:Geometry 库包含了核心几何对象,如点、多边形、线及其几何类型和定义等。Display 库:Display 库包含了支持向输出装置绘制符号体... 阅读全文
posted @ 2010-04-11 19:45 guoguogis 阅读(193) 评论(0) 推荐(0)

2009年11月14日

摘要: [转载]写给即将毕业的大学生们(强烈推荐)作者:河南理工大学测绘学院 魏峰远 教授年复一年,日复一日,每年都要送走一大批应届毕业生。你们是敬爱的老师用诚挚的爱心,培育出的芬芳桃李,你们是敬业的老师用汗聚的渠水,浇开的飘香繁花。你们就要毕业,走上工作岗位,从事你们梦寐以求的工作。工作可是一个漫长岁月,一个将近花费你们四十年的职业生涯。如何寻找工作、如何做好工作,也许下面的几段话,会对你们今后的职业生... 阅读全文
posted @ 2009-11-14 10:41 guoguogis 阅读(204) 评论(0) 推荐(0)

2009年9月2日

摘要: 插件式应用程序框架设计(一)EngineFramwork框架设计案例[hjp2=400,300,true][hjp2=400,300,true][hjp2=400,300,true][/hjp2][/hjp2][/hjp2] 阅读全文
posted @ 2009-09-02 10:00 guoguogis 阅读(302) 评论(1) 推荐(0)

2009年8月28日

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;namespace FileInfo{ public... 阅读全文
posted @ 2009-08-28 19:23 guoguogis 阅读(373) 评论(0) 推荐(0)

摘要: private void button2_Click(object sender, EventArgs e) { if(this.textBox1.Text.Trim()=="") { return; } string[] MyFile = Directory.GetFiles(this.textBox1.Text.Trim());//得到目录下的文件 //this.listBox1.Items.... 阅读全文
posted @ 2009-08-28 09:16 guoguogis 阅读(703) 评论(0) 推荐(0)

摘要: private void button3_Click(object sender, System.EventArgs e){//显示根信息if(this.textBox1.Text.Trim()=="")return;string MyRoot=System.IO.Directory.GetDirectoryRoot(this.textBox1.Text);MessageBox.Show("根是:... 阅读全文
posted @ 2009-08-28 00:06 guoguogis 阅读(247) 评论(0) 推荐(0)

2009年8月27日

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Diagnostics;namespace FileInf... 阅读全文
posted @ 2009-08-27 23:33 guoguogis 阅读(624) 评论(0) 推荐(0)

2009年8月24日

摘要: 直接在c#中建立类库,类中可以实现不同的方法和属性;直接编码,无需右键单击类添加方法(这点是与VC++中建立类库的区别),在完成编码后点击生成解决方案即可在相应文件夹中生成.dll文件。注意:1.类库中的类和类中的方法只有在访问权限为public时才能被类的对象调用,省略情况下默认为praviate;2.类库名即命名空间的名才为动态链接库的名; 3..dll生成过程中似乎直接加密了,不能利用其他如... 阅读全文
posted @ 2009-08-24 22:14 guoguogis 阅读(468) 评论(4) 推荐(0)

2009年8月23日

只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2009-08-23 19:05 guoguogis 阅读(54) 评论(0) 推荐(0)

2009年8月22日

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace ErrorTip{ public partial class F... 阅读全文
posted @ 2009-08-22 20:35 guoguogis 阅读(753) 评论(2) 推荐(0)