<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_xingd.net</title><subtitle type="text">.net related techonology</subtitle><id>http://feed.cnblogs.com/blog/u/9377/rss</id><updated>2008-03-22T07:56:23Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/9377/rss"/><entry><id>http://www.cnblogs.com/xingd/archive/2008/03/22/1117713.html</id><title type="text">Minesweeper: 新版代码</title><summary type="text">MineBoard类，将布局和交互的功能都移到另外的类上实现。CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&amp;gt;usingSystem;usingSystem.Collections;usingSystem.Collections.Generic...</summary><published>2008-03-22T07:54:00Z</published><updated>2008-03-22T07:54:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/03/22/1117713.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/03/22/1117713.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/03/19/1113868.html</id><title type="text">Minesweeper: 代码结构改进</title><summary type="text">接着前一篇文章，Minesweeper: GDI+ 初步实现，本文在代码结构上做一些改进，不涉及新的功能。首先我们来看MineBoard类的Init方法：publicvoidInit(introws,intcolumns,intmines){if(rows&amp;lt;=0||columns&amp;lt;=0||mines&amp;gt;=columns*rows){thrownewArgumentException...</summary><published>2008-03-19T14:09:00Z</published><updated>2008-03-19T14:09:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/03/19/1113868.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/03/19/1113868.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/03/06/1093943.html</id><title type="text">Minesweeper: GDI+ 初步实现</title><summary type="text">逻辑代码部分借鉴木野狐博客中的代码，参考http://www.cnblogs.com/RChen/archive/2005/07/07/188107.html，之后我会加入自己的设计调整。一些必要的枚举：publicenumGameStatus{NotStarted,Playing,Win,Lose}publicenumMineCellStatus:short{Covered,MarkDoubt,...</summary><published>2008-03-06T10:14:00Z</published><updated>2008-03-06T10:14:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/03/06/1093943.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/03/06/1093943.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/03/02/1088087.html</id><title type="text">Minesweeper: GDI+ 综述</title><summary type="text">系列前面的两篇文章写的内容太简单了，本文对我理解的GDI+做一个综述，不再涉及代码细节。GDI+中共有三种坐标，全局坐标、页面坐标和设备坐标。在GDI+的绘图调用中，传入的坐标位于全局坐标内，全局坐标经由全局变换转换到页面坐标，页面坐标再通过页面变换计算出设备坐标。全局变换通过Graphics.Transform指定，其类型为Matrix。GDI+中的矩阵为3x3浮点矩阵，可以通过Matrix类的...</summary><published>2008-03-02T13:37:00Z</published><updated>2008-03-02T13:37:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/03/02/1088087.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/03/02/1088087.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/03/02/1087599.html</id><title type="text">SQL Server 2008: Change Data Capture和Change Tracking</title><summary type="text">经常会有需求记录用户表中由DML操作(Insert/Updae/Delete)引起的数据变化，在SQL Server 2008 以前的版本中，要实现这样的功能只能通过Trigger或者数据比对（例如SCD处理），而且必须针对每个用户表开发。SQL Server 2008中新增了两种记录数据变化的功能，本文就Change Data Capture（CDC）和Change Tracking的特性做简要...</summary><published>2008-03-01T16:03:00Z</published><updated>2008-03-01T16:03:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/03/02/1087599.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/03/02/1087599.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/02/27/1083721.html</id><title type="text">SQL Server 2008: 常见缩写汇总</title><summary type="text">有一些在SQL Server 2008/2005的文章中常见的缩写，本文汇总一下，以方便大家阅读。SSAS: SQL Server Analysis ServicesSSIS: SQL Server Integration ServicesSSRS: SQL Server Reporting ServicesSSMS：SQL Server Management StudioBIDS：Busines...</summary><published>2008-02-27T06:20:00Z</published><updated>2008-02-27T06:20:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/02/27/1083721.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/02/27/1083721.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/02/26/1082744.html</id><title type="text">SQL Server 2008: Feb CTP 企业数据平台增强</title><summary type="text">SQL Server Analysis Services没有太多变化，主要是Designer的改进。Cube Wizard简化和增强了，聚合设计器增强，而且提供了手工聚合设计调整，不像SQL Server 2005中需要自己打开XML定义修改。维度设计器也有改进，比如新的Attribute Relationship的设计器和Key Column设计对话框。存储结构有一些改进，在查询和备份/恢复速度...</summary><published>2008-02-26T11:03:00Z</published><updated>2008-02-26T11:03:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/02/26/1082744.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/02/26/1082744.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/02/24/1079463.html</id><title type="text">SQL Server 2008: Feb CTP 关系数据库引擎增强</title><summary type="text">这篇文章中介绍的SQL Server 2008 关系数据库引擎（Database Engine）增强，包含所有的CTP中的累计更新，基本会与SQL Server 2008正式版发布一致。新增的功能点非常多，下面先就大部分应用开始人员关心的特性作说明。 Change Data Capture (CDC)： 变化数据捕获，可以捕获SQL Server数据表中的新增、修改和更新，并以一种易于使用的格式提...</summary><published>2008-02-24T07:12:00Z</published><updated>2008-02-24T07:12:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/02/24/1079463.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/02/24/1079463.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/02/24/1079190.html</id><title type="text">SQL Server 2008: Installation Center</title><summary type="text">SQL Server 2008将拥有全新的安装体验。从Nov CTP开始，新的安装过程代替了这前的CTP中类似SQL Server 2005的安装过程，而最新的Feb CTP中，SQL Server Installation Center将新安装、从SQL Server 2000或SQL Server 2005升级、组件维护、Samples和Failover Cluster的管理集成在了一个统一的...</summary><published>2008-02-23T17:30:00Z</published><updated>2008-02-23T17:30:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/02/24/1079190.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/02/24/1079190.html"/></entry><entry><id>http://www.cnblogs.com/xingd/archive/2008/02/22/1077868.html</id><title type="text">SQL Server 2008: Feb CTP 开放下载</title><summary type="text">可以在此地址下载：http://msdn2.microsoft.com/zh-cn/bb851668.aspx作为最后一个CTP，Feb CTP已包含了SQL Server 2008的所有功能，并且将BIDS使用的Visual Studio Shell升级到了2008。等待这个CTP已经很久了，已经下载好了，随后我会参照这个CTP写一些文章。在正式工作中，我已有7年多的SQL Server使用经验...</summary><published>2008-02-22T08:39:00Z</published><updated>2008-02-22T08:39:00Z</updated><author><name>xingd</name><uri>http://www.cnblogs.com/xingd/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xingd/archive/2008/02/22/1077868.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xingd/archive/2008/02/22/1077868.html"/></entry></feed>
