<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_flyingfish_分类_C#编程</title><id>http://feed.cnblogs.com/blog/u/22124/category/76484/rss</id><updated>2012-06-01T00:36:28Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/category/76484.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/22124/category/76484/rss"/><entry><id>http://www.cnblogs.com/flyingfish/archive/2010/02/11/1667475.html</id><title type="text">一个很炫的图片/相册浏览控件（Flex实现）</title><summary type="text">有段时间为了做个事情，需求大概这样：有几组照片集（或者叫相册）需要在软件中就行快速浏览，效果类似于Windows操作系统中的照片查看器，既可以缩略图看，也可以逐个放大看，也可以幻灯片形式放映。要求WinForm程序中实现并集成。 初看逐个问题很简单嘛，找个现成图片浏览控件，或者干脆自己写一个也行。没想到一圈照下来，还真就没找到一个合适的WinForm的.NET控件能实现如此需求。 最后无意中发...</summary><published>2010-02-11T05:16:00Z</published><updated>2010-02-11T05:16:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2010/02/11/1667475.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2010/02/11/1667475.html"/><content type="text">有段时间为了做个事情，需求大概这样：有几组照片集（或者叫相册）需要在软件中就行快速浏览，效果类似于Windows操作系统中的照片查看器，既可以缩略图看，也可以逐个放大看，也可以幻灯片形式放映。要求WinForm程序中实现并集成。 初看逐个问题很简单嘛，找个现成图片浏览控件，或者干脆自己写一个也行。没想到一圈照下来，还真就没找到一个合适的WinForm的.NET控件能实现如此需求。 最后无意中发...</content></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2009/11/16/1604203.html</id><title type="text">[转]NHibernate文章转载</title><summary type="text">最近准备学NHibernate,于是网上狂找，看来有不少文章，但仔细看就会明白，搞来搞去，其实就那么几篇大同小异的文章，但还是终于在我们的博客上找到篇好点的，就是下面那篇了，我也不明白是哪为高手写的了，因为转载的太多了，有点糊涂了，也许是张老三的作品吧，但不知道是没有把相关源码共享出来，还是我没有找到，对一个新手来说，就一些文字真的有点困难啊，何况下面的文章可能由于手误，还是某些原因，我是调试很久...</summary><published>2009-11-16T14:59:00Z</published><updated>2009-11-16T14:59:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2009/11/16/1604203.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2009/11/16/1604203.html"/><content type="text">最近准备学NHibernate,于是网上狂找，看来有不少文章，但仔细看就会明白，搞来搞去，其实就那么几篇大同小异的文章，但还是终于在我们的博客上找到篇好点的，就是下面那篇了，我也不明白是哪为高手写的了，因为转载的太多了，有点糊涂了，也许是张老三的作品吧，但不知道是没有把相关源码共享出来，还是我没有找到，对一个新手来说，就一些文字真的有点困难啊，何况下面的文章可能由于手误，还是某些原因，我是调试很久...</content></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/10/05/1304270.html</id><title type="text">System.Drawing.Color和OLE_COLOR如何转换？</title><summary type="text">使用COM控件时颜色值通常为OLE_COLOR类型，数据类型为uint或int，通常需要将Color类转换过去。可用方法之一为：用ColorTranslator类的ToOle。style.BrushColor = (uint)ColorTranslator.ToOle(Color.Yellow); </summary><published>2008-10-05T10:40:00Z</published><updated>2008-10-05T10:40:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/10/05/1304270.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/10/05/1304270.html"/><content type="text">使用COM控件时颜色值通常为OLE_COLOR类型，数据类型为uint或int，通常需要将Color类转换过去。可用方法之一为：用ColorTranslator类的ToOle。style.BrushColor = (uint)ColorTranslator.ToOle(Color.Yellow); </content></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/10/04/1303688.html</id><title type="text">[转]CheckedlistBox绑定数据库，并获得所有选中的值(ValueMember)和显示值(DisplayMember)</title><summary type="text">http://hi.baidu.com/qzrc/blog/item/f1bdd158ca632c81810a187f.htmlCheckedlistBox绑定数据库，并获得所有选中的值(ValueMember)和显示值(DisplayMember)2006年10月25日 星期三 23:22 CheckedlistBox绑定数据库，并获得所有选中的值(ValueMember)和显示值(Displa...</summary><published>2008-10-04T01:07:00Z</published><updated>2008-10-04T01:07:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/10/04/1303688.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/10/04/1303688.html"/><content type="text">http://hi.baidu.com/qzrc/blog/item/f1bdd158ca632c81810a187f.htmlCheckedlistBox绑定数据库，并获得所有选中的值(ValueMember)和显示值(DisplayMember)2006年10月25日 星期三 23:22 CheckedlistBox绑定数据库，并获得所有选中的值(ValueMember)和显示值(Displa...</content></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209845.html</id><title type="text">[藏]C#常用正则表达式整理</title><summary type="text"/><published>2008-05-29T03:58:00Z</published><updated>2008-05-29T03:58:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209845.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209845.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209843.html</id><title type="text">[藏]C#正则表达式整理备忘 </title><summary type="text"/><published>2008-05-29T03:57:00Z</published><updated>2008-05-29T03:57:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209843.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209843.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209835.html</id><title type="text">[藏]C# 中的常用正则表达式总结</title><summary type="text"/><published>2008-05-29T03:46:00Z</published><updated>2008-05-29T03:46:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209835.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209835.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209826.html</id><title type="text">[转]C#正则表达式小结</title><summary type="text"/><published>2008-05-29T03:39:00Z</published><updated>2008-05-29T03:39:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209826.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209826.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209822.html</id><title type="text">[藏]C# 中的常用正则表达式总结</title><summary type="text"/><published>2008-05-29T03:38:00Z</published><updated>2008-05-29T03:38:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209822.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209822.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209814.html</id><title type="text">[藏]常用正则表达式</title><summary type="text"/><published>2008-05-29T03:30:00Z</published><updated>2008-05-29T03:30:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209814.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209814.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209812.html</id><title type="text">[藏]常用的匹配正则表达式和实例</title><summary type="text"/><published>2008-05-29T03:28:00Z</published><updated>2008-05-29T03:28:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209812.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209812.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209807.html</id><title type="text">[藏]常用正则表达式及评注</title><summary type="text"/><published>2008-05-29T03:25:00Z</published><updated>2008-05-29T03:25:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209807.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/29/1209807.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209296.html</id><title type="text">[转]在用数据绑定的时候我为什么不能把焦点移出(Tab out)我的控件？(译)</title><summary type="text"/><published>2008-05-28T07:54:00Z</published><updated>2008-05-28T07:54:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209296.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209296.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209291.html</id><title type="text">[转]使用ErrorProvider改善用户体验</title><summary type="text"/><published>2008-05-28T07:49:00Z</published><updated>2008-05-28T07:49:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209291.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/28/1209291.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/05/21/1204179.html</id><title type="text">Binding的Parse和Format事件</title><summary type="text"/><published>2008-05-21T08:53:00Z</published><updated>2008-05-21T08:53:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/05/21/1204179.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/05/21/1204179.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/01/10/1034238.html</id><title type="text">DotNetBar中ExpandableSplitter使用技巧</title><summary type="text"/><published>2008-01-10T13:39:00Z</published><updated>2008-01-10T13:39:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/01/10/1034238.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/01/10/1034238.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2008/01/09/1032310.html</id><title type="text">上传一很酷的黑色背景.vssettings文件</title><summary type="text"/><published>2008-01-09T09:17:00Z</published><updated>2008-01-09T09:17:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2008/01/09/1032310.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2008/01/09/1032310.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2007/08/09/848913.html</id><title type="text">命名空间Microsoft.Office.Interop.Word不存在....</title><summary type="text"/><published>2007-08-09T03:00:00Z</published><updated>2007-08-09T03:00:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2007/08/09/848913.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2007/08/09/848913.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2007/04/18/718622.html</id><title type="text">用Select查询结果创建ACCESS表</title><summary type="text"/><published>2007-04-18T09:40:00Z</published><updated>2007-04-18T09:40:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2007/04/18/718622.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2007/04/18/718622.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/flyingfish/archive/2007/04/06/702235.html</id><title type="text">??征集Sql Server2005设置Windows集成认证资料</title><summary type="text"/><published>2007-04-06T01:19:00Z</published><updated>2007-04-06T01:19:00Z</updated><author><name>flyingfish</name><uri>http://www.cnblogs.com/flyingfish/</uri></author><link rel="alternate" href="http://www.cnblogs.com/flyingfish/archive/2007/04/06/702235.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/flyingfish/archive/2007/04/06/702235.html"/><content type="text"/></entry></feed>
