<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_无涯空间</title><subtitle type="text">DotNet 技术交流！</subtitle><id>http://feed.cnblogs.com/blog/u/16350/rss</id><updated>2011-01-10T04:14:24Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/16350/rss"/><entry><id>http://www.cnblogs.com/Infinity/archive/2010/03/29/1692864.html</id><title type="text">jQuery 选择器（一）</title><summary type="text">在上一篇文章中介绍了如何取得一个 jQuery 对象，那么接下来就来介绍如何取得正确的对象，jQuery 函数就需要借取于其强大的“选择符”来完成这些工作。</summary><published>2010-03-29T09:21:00Z</published><updated>2010-03-29T09:21:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2010/03/29/1692864.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2010/03/29/1692864.html"/><content type="text">在上一篇文章中介绍了如何取得一个 jQuery 对象，那么接下来就来介绍如何取得正确的对象，jQuery 函数就需要借取于其强大的“选择符”来完成这些工作。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2010/03/22/1691864.html</id><title type="text">jQuery 核心函数以及 jQuery 对象</title><summary type="text">介绍 jQuery 的几个核心函数，在 jQuery 中它们起着至关重要的作用，在实际的前端开发过程中用到最多的也是它们。介绍 jQuery 对象的主要结构。</summary><published>2010-03-22T13:03:00Z</published><updated>2010-03-22T13:03:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2010/03/22/1691864.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2010/03/22/1691864.html"/><content type="text">介绍 jQuery 的几个核心函数，在 jQuery 中它们起着至关重要的作用，在实际的前端开发过程中用到最多的也是它们。介绍 jQuery 对象的主要结构。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2010/03/22/1691803.html</id><title type="text">jQuery 学习及应用</title><summary type="text">jQuery 是一款非常优秀的 javascript 应用框架，在最近几年来十分流行，它以其小巧的体积、强大的功能、精简的代码、丰富的插件博得了广大前端开发人员的亲睐。最近打算写一些文章来介绍 jQuery 的基础知识以及分享一些个人经验的总结，希望和大家就 jQuery 的使用经验进行交流。</summary><published>2010-03-22T11:17:00Z</published><updated>2010-03-22T11:17:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2010/03/22/1691803.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2010/03/22/1691803.html"/><content type="text">jQuery 是一款非常优秀的 javascript 应用框架，在最近几年来十分流行，它以其小巧的体积、强大的功能、精简的代码、丰富的插件博得了广大前端开发人员的亲睐。最近打算写一些文章来介绍 jQuery 的基础知识以及分享一些个人经验的总结，希望和大家就 jQuery 的使用经验进行交流。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/11/02/548082.html</id><title type="text">两种自定义表单设计方案 [原创]</title><summary type="text">最近参与一个项目，客户要求提供自定义表单的功能。主要的要求是：能够对表单的字段进行增删改，对显示表单的格式可以灵活定制。由于客户的表单变动可能比较频繁，所以决定实现自定义表单功能。初步设想出以下两种自定义表单的解决方案。</summary><published>2006-11-02T08:29:00Z</published><updated>2006-11-02T08:29:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/11/02/548082.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/11/02/548082.html"/><content type="text">最近参与一个项目，客户要求提供自定义表单的功能。主要的要求是：能够对表单的字段进行增删改，对显示表单的格式可以灵活定制。由于客户的表单变动可能比较频繁，所以决定实现自定义表单功能。初步设想出以下两种自定义表单的解决方案。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/10/26/540347.html</id><title type="text">从 dll 程序集中动态加载窗体 [原创]</title><summary type="text">昨天晚上花了一晚上时间写了一个从程序集中动态加载窗体的程序．将任何包含窗体的代码编译成 dll 文件，再把 dll 文件拷贝到本程序的目录下，本程序运行时即可动态检查到 dll 文件中的窗体，将窗体类的类型在程序菜单中显示出来，点击菜单即可运行对应的窗体．本程序主要用到了 Assembly 类动态加载程序集，再得到程序集中包含类的 Type 类型，动态生成类实例，动态调用类方法．个人觉得这是一种提供高度松耦合，可随意扩展的程序结构框架，希望和大家探讨一下这种框架的应用前景！</summary><published>2006-10-26T03:28:00Z</published><updated>2006-10-26T03:28:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/10/26/540347.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/10/26/540347.html"/><content type="text">昨天晚上花了一晚上时间写了一个从程序集中动态加载窗体的程序．将任何包含窗体的代码编译成 dll 文件，再把 dll 文件拷贝到本程序的目录下，本程序运行时即可动态检查到 dll 文件中的窗体，将窗体类的类型在程序菜单中显示出来，点击菜单即可运行对应的窗体．本程序主要用到了 Assembly 类动态加载程序集，再得到程序集中包含类的 Type 类型，动态生成类实例，动态调用类方法．个人觉得这是一种提供高度松耦合，可随意扩展的程序结构框架，希望和大家探讨一下这种框架的应用前景！</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/08/10/473250.html</id><title type="text">C# 绘制矢量图形 [原创]</title><summary type="text">  近来参与了一个项目，软件主要的功能就是使用C#画矢量图，然后导出到Word、Excel、Powerpoint中，并且能够再次被编辑。以下是我们的解决过程：  首先应该确定在Office文档中可编辑图形使用的格式；学习了相关资料，了解到Office文档主要支持三种矢量图的格式：1、VML图形，2、WMF文件格式，3、EMF文件格式。由于VML图开一般使用HTML语言进行描述，不便于进行操作，因此决定采用WMF和EMF文件格式。</summary><published>2006-08-10T06:45:00Z</published><updated>2006-08-10T06:45:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/08/10/473250.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/08/10/473250.html"/><content type="text">  近来参与了一个项目，软件主要的功能就是使用C#画矢量图，然后导出到Word、Excel、Powerpoint中，并且能够再次被编辑。以下是我们的解决过程：  首先应该确定在Office文档中可编辑图形使用的格式；学习了相关资料，了解到Office文档主要支持三种矢量图的格式：1、VML图形，2、WMF文件格式，3、EMF文件格式。由于VML图开一般使用HTML语言进行描述，不便于进行操作，因此决定采用WMF和EMF文件格式。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/03/02/340941.html</id><title type="text">利用Javascript 结合 VML 生成三维报表（饼图）[原创]</title><summary type="text">   前几天看了Jmtek 的 http://www.cnblogs.com/jmtek/archive/2006/02/23/336073.html 这篇文章，写得的确不错，控件也非常好。只是只能供我们使用 DotNet 的朋友们使用。最近在网上比较流行 AJAX 技术，于是萌生了在 AJAX 下实现这种效果的想法。最终决定采用一个文本文件作为数据源，Javascript 动态生成 VML 代码。实现后的效果还比较可以，生成的图表效果和 Jmtek 的控件效果差不多，并且能够在文本数据内容发生改变时无刷新的更新图表，更新数据也非常方便。  这段代码的最大特点是：移植性非常好，只需将两个文件放在任意一个目录下即可运行，这样爱好 JAVA 的朋友也可实现这种效果了。</summary><published>2006-03-02T02:36:00Z</published><updated>2006-03-02T02:36:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/03/02/340941.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/03/02/340941.html"/><content type="text">   前几天看了Jmtek 的 http://www.cnblogs.com/jmtek/archive/2006/02/23/336073.html 这篇文章，写得的确不错，控件也非常好。只是只能供我们使用 DotNet 的朋友们使用。最近在网上比较流行 AJAX 技术，于是萌生了在 AJAX 下实现这种效果的想法。最终决定采用一个文本文件作为数据源，Javascript 动态生成 VML 代码。实现后的效果还比较可以，生成的图表效果和 Jmtek 的控件效果差不多，并且能够在文本数据内容发生改变时无刷新的更新图表，更新数据也非常方便。  这段代码的最大特点是：移植性非常好，只需将两个文件放在任意一个目录下即可运行，这样爱好 JAVA 的朋友也可实现这种效果了。</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/01/25/322985.html</id><title type="text">微软的正则表达式教程（五）：选择/编组和后向引用</title><summary type="text">微软的正则表达式教程（五）：选择/编组和后向引用</summary><published>2006-01-25T01:57:00Z</published><updated>2006-01-25T01:57:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322985.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322985.html"/><content type="text">微软的正则表达式教程（五）：选择/编组和后向引用</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/01/25/322983.html</id><title type="text">微软的正则表达式教程（四）：限定符和定位符</title><summary type="text">微软的正则表达式教程（四）：限定符和定位符</summary><published>2006-01-25T01:56:00Z</published><updated>2006-01-25T01:56:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322983.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322983.html"/><content type="text">微软的正则表达式教程（四）：限定符和定位符</content></entry><entry><id>http://www.cnblogs.com/Infinity/archive/2006/01/25/322982.html</id><title type="text">微软的正则表达式教程（三）：字符匹配 </title><summary type="text">微软的正则表达式教程（三）：字符匹配 </summary><published>2006-01-25T01:55:00Z</published><updated>2006-01-25T01:55:00Z</updated><author><name>无涯</name><uri>http://www.cnblogs.com/Infinity/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322982.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Infinity/archive/2006/01/25/322982.html"/><content type="text">微软的正则表达式教程（三）：字符匹配 </content></entry></feed>
