<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Yes EVE, this is Eden</title>
	<atom:link href="http://yeseve.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://yeseve.com</link>
	<description>My life, my world</description>
	<lastBuildDate>Tue, 31 Aug 2010 04:49:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASP.NET MVC ”failed to acquire mutex lock asp.net“的错误解决办法</title>
		<link>http://yeseve.com/?p=322</link>
		<comments>http://yeseve.com/?p=322#comments</comments>
		<pubDate>Tue, 31 Aug 2010 04:48:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MVC]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[mvc]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=322</guid>
		<description><![CDATA[出现这个错误提示的原因有可能是因为Visual studio和.net framework在临时文件夹上有冲突。我查了一些文档，最后是这么解决的 - 如果你现在开着 visual studio 2005/2008/2010 ,需要先关闭它 - 然后到你对应版本的 ASP.NET temporary folder（比如.net 2.0,3.5或者4.0） &#60;Windows dir&#62;\Microsoft.Net\Framework\v4.0&#60;extra numbers&#62;\Temporary ASpNET pages - 删除Temporary ASpNET pages这个临时目录下的所有文件夹 - Reset IIS (或者在命令行里执行 &#62;iisreset) - 先去浏览器里访问一下你的网站(http://localhost/your app) - 然后打开Visual studio]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=322</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC 2 学习笔记： view和control之间传值</title>
		<link>http://yeseve.com/?p=319</link>
		<comments>http://yeseve.com/?p=319#comments</comments>
		<pubDate>Tue, 24 Aug 2010 06:49:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=319</guid>
		<description><![CDATA[在asp.net2.0的网页开发模式下，我们一般通过直将访问页面控件， 将值写入到页面， 但在Asp.net MVC模式下，已不能在Controller中再去访问页面控件了，要如何才能给View页面传值呢？ 在Controller中有两个字典(ViewData和TempData)来实现View之间的值传递, 在ControllerBase类声明中我们就可以看到： namespace System.Web.Mvc { // 摘要: //     Represents the base class for all MVC controllers. public abstract class ControllerBase : MarshalByRefObject, IController { protected ControllerBase(); // 摘要: //     Gets or sets the controller context. public ControllerContext ControllerContext { get; set; } // // 摘要: //     Gets or sets the temporary data. public TempDataDictionary TempData { get; set; } // // 摘要: //     Gets or sets a value indicating whether the request is valid. public bool ValidateRequest { get; set; } // // 摘要: //     Gets or sets the value provider. public IDictionary&#60;string, ValueProviderResult&#62; ValueProvider { get; set; } // // 摘要: //     Gets or sets the view data. public ViewDataDictionary ViewData { get; set; } // 摘要: //     Executes the specified request context. // // 參數: //   requestContext: //     The request context. protected virtual void Execute(RequestContext requestContext); // // 摘要: //     Executes the core. protected abstract void ExecuteCore(); // // 摘要: //     Initializes the specified request context. // // 參數: //   requestContext: //     The request context. protected virtual void Initialize(RequestContext requestContext); } } namespace System.Web.Mvc [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 快捷键（VS2010）</title>
		<link>http://yeseve.com/?p=316</link>
		<comments>http://yeseve.com/?p=316#comments</comments>
		<pubDate>Tue, 10 Aug 2010 00:57:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[iTech]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=316</guid>
		<description><![CDATA[Ctrl+E,D &#8212;-格式化全部代码 Ctrl+E,F &#8212;-格式化选中的代码 CTRL + SHIFT + B生成解决方案 CTRL + F7 生成编译 CTRL + O 打开文件 CTRL + SHIFT + O打开项目 CTRL + SHIFT + C显示类视图窗口 F4 显示属性窗口 SHIFT + F4显示项目属性窗口 CTRL + SHIFT + E显示资源视图 F12 转到定义 CTRL + F12转到声明 CTRL + ALT + J对象浏览 CTRL + ALT + F1帮助目录 CTRL + F1 [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=316</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何删除Tortoise SVN目录信息</title>
		<link>http://yeseve.com/?p=312</link>
		<comments>http://yeseve.com/?p=312#comments</comments>
		<pubDate>Tue, 13 Jul 2010 03:50:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iTech]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=312</guid>
		<description><![CDATA[SVN超级强大，可是遇到的问题也多多。 最近有朋友问怎么删除一个项目的SVN信息，我也没弄过，搜了半天， linux下可以用命令如下： find . -type d -name &#8220;.svn&#8221;&#124;xargs rm -rf 或 find . -type d -iname &#8220;.svn&#8221; -exec rm -rf {} \; windows思路相同，但是这里介绍一个非常简单快捷的方法： 删除.svn目录，windows环境，在资源管理器下，在右边的栏目下找到你要删除.svn的目录，右键不放开，拖到左边那个目录上，即跳出选项，可选项中有 export all to here ,即把当前目录中的.svn目录删除掉了~ svn信息是根据文件夹里面的 .svn 文件夹保存相关配置的，删除此文件夹即可去掉svn信息： linux下： find . -type d -name &#8220;.svn&#8221;&#124;xargs rm -rf 或 find . -type d -iname &#8220;.svn&#8221; -exec rm -rf {} \; windows [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=312</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Eagles 12月来墨尔本开演唱会了</title>
		<link>http://yeseve.com/?p=310</link>
		<comments>http://yeseve.com/?p=310#comments</comments>
		<pubDate>Sat, 03 Jul 2010 23:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=310</guid>
		<description><![CDATA[一听说The Eagles 要来开演唱会，兴奋地我汗毛竖起。可惜知道的太晚了，虽然在12月开，票却从6月就开始发售了。一查，除了600来刀的VIP，别的场次和等级的票都卖光了。实在不甘心，去EBAY一搜，我K，票价都翻倍了。 好在在墨尔本开4天，最后一天的票一看是七月五日发售。今天是4号，那不就是明早？我心里真是乐开了花，哈哈！正好今晚看球，明早起来买票。 于是定了闹表，在德国4：0狂扫阿根廷之后这个消息仍然伴随我进入甜美的梦乡。 早上不到8点就起来了，闹表还没响，把电脑打开，8点58开始一遍一遍刷TICKETTEK，到9点03还没变化，上面明明写着9点整开始发售啊。奇怪。忽然想到日期是不是错了，果然，发售日期是7月5日，我昨晚看的时候实际已经过了0点了，所以错误的认为今天是5号。 hotel California，不会成为我心中永远的遗憾吧！]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=310</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>淘宝通道，直通各类精选</title>
		<link>http://yeseve.com/?p=300</link>
		<comments>http://yeseve.com/?p=300#comments</comments>
		<pubDate>Fri, 02 Jul 2010 03:59:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=300</guid>
		<description><![CDATA[如果你有过网购经历，你一定知道淘宝网，你知道http://www.taobao.com这个网址可以进入淘宝网首页，但你肯定不知道淘宝网还有各种内部员工购物通道；比如：正品商城通道，从这里进入全是淘宝网的品质商家，不担心受骗上当买到假货；淘宝网促销通道，找促销商品从此进入就对了；&#8230;&#8230;.. 1、【淘宝网促销】入口 找促销特价商品，从这个入口进入就对了。 http://pindao.huoban.taobao.com/channel/onSale.htm 2、【淘宝网正品商城】入口 从这里进入全是淘宝网的品质商家，不再担心受骗上当买到假货了。 http://pindao.huoban.taobao.com/tms/channel/channelmall.htm 3、【淘宝网店铺街】入口 淘宝网各行业的优秀店铺Top10排行榜，数据每天更新。从这里进入，找好店铺太容易了。 http://pindao.huoban.taobao.com/channel/shop_street.htm 4、【淘宝网品牌库】入口 按各知名品牌分类，比如你想找Nokia品牌的相关商品，从这里进入就能方便的找到该品牌的优质卖家了。 http://pindao.huoban.taobao.com/channel/brand_lib.htm 5、【淘宝网风云榜】入口 买家搜索最多的商品、最关注的品牌、销量最大的商品、关注指数、一周热点等信息，尽在【淘宝风云榜】。 http://pindao.huoban.taobao.com/channel/channelfy.htm 6、【女装特卖】入口 如果你想购买女装类商品，可从这里进入。 http://pindao.huoban.taobao.com/tms/channel/lady.htm 7、【美容美妆】入口 如果你想购买美容美妆类商品，从这里进入。 http://pindao.huoban.taobao.com/tms/channel/beauty.htm 8、【鞋包饰品】入口 如果你想购买鞋包饰品商品，请从这里进入。 http://pindao.huoban.taobao.com/tms/channel/jewelry.htm 9、【台湾风尚】入口 全是来自祖国宝岛台湾的时尚服饰，美女们可注意了啊。 http://pindao.huoban.taobao.com/tms/channel/taiwan.htm 10、【淘宝网食品】入口 美女们淘可口零食的最好地方。零食特产/营养膳食食品/茶叶饮料 http://pindao.huoban.taobao.com/tms/channel/food.htm 11、【淘宝网男装】入口 如果你想购买男装类商品，可从这里进入。 http://pindao.huoban.taobao.com/tms/channel/man.htm 12、【居家生活】入口 如果你想购居家生活类商品，请从这里进入。居家日用/创意家居/床上用品/靠垫/窗帘/布艺 /厨房餐饮/卫浴护理 /家饰/工艺品/十字绣，尽在【居家生活】 http://pindao.huoban.taobao.com/tms/channel/baby.htm 13、【数码手机】入口 如果你准备淘淘数码类商品，请从这里进入。电脑/笔记本/品牌手机 /MP3/MP44 /山寨手机 /数码相机/摄像机 /配件/存储/文教，尽在【数码手机】 http://pindao.huoban.taobao.com/tms/channel/digital.htm 14、【淘宝电器城】入口 品牌电器、正规发票，淘宝网与京东商城、新蛋等竞争的新武器。 http://pindao.huoban.taobao.com/tms/channel/electric.htm 15、【特卖商城】入口 应有尽有，全是降价特卖商品，淘便宜的MMGG们可以去看看哦。 http://pindao.huoban.taobao.com/tms/channel/channelcode.htm 16、【品质店铺精选】入口 淘宝网官方推荐的正品低价好店铺，从这里进入，可以放心选购哦。 http://pindao.huoban.taobao.com/channel/huangguan.htm]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=300</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>刘心《雨过之后》吉他谱</title>
		<link>http://yeseve.com/?p=302</link>
		<comments>http://yeseve.com/?p=302#comments</comments>
		<pubDate>Thu, 01 Jul 2010 02:03:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[i心情]]></category>
		<category><![CDATA[快乐男声，刘心]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=302</guid>
		<description><![CDATA[2010快乐男声里目前还是挺喜欢刘心的创作的。这个歌弹了一下比较容易上手而且好听。推荐！ G调转A    夹2品 《雨过之后》 作词/作曲/编曲/吉他/演唱：刘心 前奏AM   G   F   C   AM   G   F   B7(去1弦）E AM          G 雨过之后 才看清 F             C 我们逃不掉的结局 AM          G 一年之后 的相遇 F          B7(去1弦） E 还是被你的美吸引 AM          G 反反复复 不确定 F              C 我们还该不该继续 AM          G 记忆越来 越空虚 F                   G 这次更像是游戏 别再让我委屈 AM            G 最后 最后 还是放开了手 F                 C 不想再 爱过头 成了痛 AM              G [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=302</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF里如何屏蔽数字以外的字符，只允许输入数字（或者小数点）</title>
		<link>http://yeseve.com/?p=297</link>
		<comments>http://yeseve.com/?p=297#comments</comments>
		<pubDate>Wed, 30 Jun 2010 02:05:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[文本框]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=297</guid>
		<description><![CDATA[这段代码是为了解决WPF里如何屏蔽数字以外的字符，只允许输入数字（或者小数点）的问题。 在。cs源文件添加如下事件之后，再把事件附加到要应用的Textbox里上。具体就是点击Textbox，在右下角切换到Events这个tab页面里，选择相应的KeyDown事件和TextChanged事件。 #region Added by Will for TextBox: Numbers input only 屏蔽数字以外的字符 private void TextBox_KeyDown(object sender, System.Windows.Input.KeyEventArgs e) { TextBox txt = sender as TextBox; //屏蔽非法按键 if ((e.Key &#62;= Key.NumPad0 &#38;&#38; e.Key &#60;= Key.NumPad9) &#124;&#124; e.Key == Key.Decimal) { //if (txt.Text.Contains(&#8220;.&#8221;) &#38;&#38; e.Key == Key.Decimal) if (e.Key == Key.Decimal) { e.Handled = true; return; } [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=297</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何在WPF调整datagrid控件的各项颜色DataGridColumnHeader，DataGridRowHeader</title>
		<link>http://yeseve.com/?p=294</link>
		<comments>http://yeseve.com/?p=294#comments</comments>
		<pubDate>Fri, 18 Jun 2010 05:32:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[datagrid]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=294</guid>
		<description><![CDATA[WPF4.0终于支持datagrid控件了，是个多么重要的进步啊，lol，但是怎么调整各项颜色呢？ 下面的代码举例了主要的设置方法。包括对列头，行头的设置。最重要的是如何改变选中行的颜色。这个有些麻烦，不能直接通过属性修改，要先继承系统自身的brush，然后定义颜色，如下列代码所示： &#60;DataGrid.Resources&#62; &#60;SolidColorBrush x:Key=&#8221;{x:Static SystemColors.HighlightBrushKey}&#8221; Color=&#8221;#E146474B&#8221;/&#62; &#60;/DataGrid.Resources&#62; 下面是更改列头DataGridColumnHeader的颜色： &#60;DataGrid.ColumnHeaderStyle&#62; &#60;Style TargetType=&#8221;DataGridColumnHeader&#8221;&#62; &#60;Setter Property=&#8221;Background&#8221; Value=&#8221;#CC244387&#8243; /&#62; &#60;Setter Property=&#8221;Foreground&#8221; Value=&#8221;#FFE0E9F9&#8243;/&#62; &#60;Setter Property=&#8221;FontSize&#8221; Value=&#8221;11&#8243; /&#62; &#60;/Style&#62; &#60;/DataGrid.ColumnHeaderStyle&#62; 下面是更改行头的颜色RowHeaderStyle &#60;DataGrid.RowHeaderStyle&#62; &#60;Style TargetType=&#8221;DataGridRowHeader&#8221;&#62; &#60;Setter Property=&#8221;Background&#8221; Value=&#8221;#CC244387&#8243; /&#62; &#60;/Style&#62; &#60;/DataGrid.RowHeaderStyle&#62; &#60;DataGrid.RowStyle&#62; &#60;Style TargetType=&#8221;DataGridRow&#8221;&#62; &#60;Setter Property=&#8221;Background&#8221; Value=&#8221;White&#8221;/&#62; &#60;Style.Triggers&#62;//Triggers是用来设置各种事件的，这里用鼠标事件变化单元行颜色 &#60;Trigger Property=&#8221;IsMouseOver&#8221; Value=&#8221;True&#8221;&#62; &#60;Setter Property=&#8221;Background&#8221; Value=&#8221;#FF6EA2F5&#8243;/&#62; &#60;Setter Property=&#8221;Foreground&#8221; Value=&#8221;White&#8221;/&#62; &#60;/Trigger&#62; &#60;Trigger Property=&#8221;IsSelected&#8221; Value=&#8221;True&#8221;&#62; [...]]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=294</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPF里如何动态调整控件位置</title>
		<link>http://yeseve.com/?p=292</link>
		<comments>http://yeseve.com/?p=292#comments</comments>
		<pubDate>Fri, 18 Jun 2010 05:25:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[iTech]]></category>
		<category><![CDATA[坐标，定位，控件，Thickness]]></category>

		<guid isPermaLink="false">http://yeseve.com/?p=292</guid>
		<description><![CDATA[控件的位置往往是需要动态调整的，那么在WPF里如何设置呢？ 我们需要用到控件的Margin属性。 首先的大前提是我们要把控件的对齐方式设置好，比如向上向左对齐或者向下向右对齐，否则相对的另一方向的参数就没有作用了。 然后在C#代码里用 Thickness来调整，这里我就用常量举例了： button1.Margin = new Thickness(10,10,0,0); 就这么简单，希望有帮助。]]></description>
		<wfw:commentRss>http://yeseve.com/?feed=rss2&amp;p=292</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
