<?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>YippeeSoft开心软件 &#187; Dev</title>
	<atom:link href="http://www.yippeesoft.com/blog/p/category/dev/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yippeesoft.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Mar 2010 02:54:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OnExplicitShutdown OnStartup</title>
		<link>http://www.yippeesoft.com/blog/p/onexplicitshutdown-onstartup.php</link>
		<comments>http://www.yippeesoft.com/blog/p/onexplicitshutdown-onstartup.php#comments</comments>
		<pubDate>Fri, 22 Jan 2010 05:10:33 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[OnExplicitShutdown]]></category>
		<category><![CDATA[OnStartup]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/onexplicitshutdown-onstartup.php</guid>
		<description><![CDATA[protected override void OnStartup(StartupEventArgs e)&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160; Window testWindow = new Window();&#160;&#160;&#160;&#160;&#160;&#160; testWindow.ShowDialog();&#160;&#160;&#160;&#160;&#160;&#160; testWindow.Close();&#160;&#160;&#160;&#160;&#160;&#160; // THE CODE BELOW WILL NOT SHOW THE NEXT WINDOW&#160;&#160;&#160;&#160;&#160;&#160; Window testWindow2 = new Window();&#160;&#160;&#160;&#160;&#160;&#160; testWindow2.ShowDialog();&#160;&#160;&#160;&#160;&#160;&#160; testWindow2.Close();&#160;&#160;&#160; }同一个程序里面启动多个WINDOWS第二个立即返回了改成 OnExplicitShutdownOnLastWindowClose

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/onexplicitshutdown-onstartup.php" title="OnExplicitShutdown OnStartup">阅读全文——共2260字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/onexplicitshutdown-onstartup.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>java led dll</title>
		<link>http://www.yippeesoft.com/blog/p/java-led-dll.php</link>
		<comments>http://www.yippeesoft.com/blog/p/java-led-dll.php#comments</comments>
		<pubDate>Fri, 25 Dec 2009 05:10:33 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[led]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/java-led-dll.php</guid>
		<description><![CDATA[java 操作 dll JNative LEd &#8211; zjutsoft的专栏 &#8211; CSDN博客http://blog.csdn.net/zjutsoft/archive/2009/09/10/4538943.aspx

java 操作 LED DLL 动态链接库 JNaitive &#8211; zjutsoft &#8211; JavaEye技术网站http://zjutsoft.javaeye.com/blog/466250

java 操作 LED DLL 动态链接库 JNaitivehttp://fuckb.net/article?v=2&#38;u=java-operation-led-dll-dynamic-link-library-jnaitive#java%20%E6%93%8D%E4%BD%9C%20LED%20DLL%20%E5%8A%A8%E6%80%81%E9%93%BE%E6%8E%A5%E5%BA%93%20JNaitivejava 操作 LED DLL 动态链接库 JNaitive.主要是操作LDE。 java 来操作dll动态链接库。包含 四个文件 JNative.jar. 动态链接库BxADLL.dll.需要放到 c:\windows\system32目录下面的。 JNativeCpp.dll源代码：import org.xvolks.jnative.JNative;import org.xvolks.jnative.Type;import org.xvolks.jnative.exceptions.NativeException;import org.xvolks.jnative.pointers.Pointer;import org.xvolks.jnative.pointers.memory.HeapMemoryBlock;import org.xvolks.jnative.pointers.memory.MemoryBlockFactory;import org.xvolks.jnative.misc.basicStructures.INT64;import org.xvolks.jnative.misc.basicStructures.LONG;import org.xvolks.jnative.misc.basicStructures.HWND;import org.xvolks.jnative.misc.basicStructures.LPARAM;import org.xvolks.jnative.misc.basicStructures.HANDLE;import org.xvolks.jnative.util.Callback;public class catchDLL2 {private static JNative v = null;/*** 加载的DLL*/private static final String DLL_LIB = &#8220;BxADLL.dll&#8221;;// 强制关机static void SetScreenState(int a){int i=0;try{v = new JNative(DLL_LIB, &#8220;SetScreenState&#8221;);Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));v.setParameter(i++,1);v.setParameter(i++,a);p.setStringAt(0,&#8221;ScreenStateData1&#8243;);v.setParameter(i++,p);v.invoke();}catch(Exception e){e.printStackTrace();}}//设置亮度static void SetScreenLight(int a){int i=0;try{v = new JNative(DLL_LIB, &#8220;SetScreenLight&#8221;);Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));v.setParameter(i++,1);v.setParameter(i++,a);p.setStringAt(0,&#8221;ScreenLight1&#8243;);v.setParameter(i++,p);v.invoke();}catch(Exception e){e.printStackTrace();}}//设置显示屏参数static void SetScreenParameter() throws NativeException, IllegalAccessException{int i = 0;v = new JNative(DLL_LIB, &#8220;SetScreenParameter&#8221;);Pointer p3 = new Pointer(MemoryBlockFactory.createMemoryBlock(100));p3.setStringAt(0,&#8221;ParametetData1&#8243;);//设置参数v.setParameter(i++,1);v.setParameter(i++,64);v.setParameter(i++,32);v.setParameter(i++,2);v.setParameter(i++,2);v.setParameter(i++,0);v.setParameter(i++,0);v.setParameter(i++,p3);//设置返回值类型//v.setRetVal(Type.INT);v.invoke();}//发送命令 参数是包含命令的文件static int SendDataToComm(String pchar,int i){int ret=1;try{v = new JNative(DLL_LIB, &#8220;SendDataToComm&#8221;);System.out.println(v.getDLLName());Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));Pointer p2 = new Pointer(MemoryBlockFactory.createMemoryBlock(100));//设置参数v.setParameter(0,1);v.setParameter(1,i);v.setParameter(2,64);v.setParameter(3,32);v.setParameter(4,2);p.setStringAt(0,&#8221;Com1&#8243;);v.setParameter(5,p);v.setParameter(6,57600);p2.setStringAt(0,pchar);v.setParameter(7,p2);//设置返回值类型v.setRetVal(Type.LONG);v.invoke();//System.out.println(&#8220;LED设备=&#8221;+p2.getAsString());ret = Integer.parseInt(v.getRetVal());}catch(Exception e){e.printStackTrace();}return ret;}//取得发送全部显示屏数据的数据头信息，在添加显示区域信息前添加。static void GetAllDataHead(){try{int i = 0;v = new JNative(DLL_LIB, &#8220;GetAllDataHead&#8221;);/*Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));p.setStringAt(0,&#8221;SendAllDataHead1&#8243;);*///设置参数===================//显示屏屏号v.setParameter(i++,1);//显示屏中区域的个数v.setParameter(i++,2);//字幕区域的宽度v.setParameter(i++,64);//字幕区域的高度v.setParameter(i++,32);//显示屏类型v.setParameter(i++,2);//字幕区域信息保存的文件名；v.setParameter(i++,&#8221;SendAllDataHead1&#8243;);//设置返回值类型//v.setRetVal(Type.INT);v.invoke();}catch(Exception e){e.printStackTrace();}}//合并显示区域信息文件static void UnionAreaDataToFile(int a,int b,String file,int c){try{int i = 0;v = new JNative(DLL_LIB, &#8220;UnionAreaDataToFile&#8221;);/*Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));Pointer p1 = new Pointer(MemoryBlockFactory.createMemoryBlock(100));p.setStringAt(0,file);p1.setStringAt(0,&#8221;SendAllData1&#8243;);*///设置参数===================//pSourceFile是否是区域文件；1：区域文件；0：非区域文件；v.setParameter(i++,a);//区域序号；从1开始；v.setParameter(i++,b);//预合并信息文件名称v.setParameter(i++,file);//合并目标文件名称。v.setParameter(i++,&#8221;SendAllData1&#8243;);//0：在原文件下添加合并信息文件；1：删除原文件信息，重新创建合并信息文件v.setParameter(i++,c);//设置返回值类型//v.setRetVal(Type.INT);v.invoke();}catch(Exception e){e.printStackTrace();}}//转换 字幕区域显示信息 SendDataTitle1 D1static void SetScreenTitle(int nAreaOrdID,int x,int y,int hight,int big,String pTitle,int nStunt,int nRunSpeed,int nShowTime){try{int i = 0;v = new JNative(DLL_LIB, &#8220;SetScreenTitle&#8221;);Pointer p = new Pointer(MemoryBlockFactory.createMemoryBlock(100));//Pointer p1 = new Pointer(MemoryBlockFactory.createMemoryBlock(100));Pointer p2 = new Pointer(MemoryBlockFactory.createMemoryBlock(100));p.setStringAt(0,&#8221;宋体&#8221;);//p1.setStringAt(0,pTitle);p2.setStringAt(0,&#8221;SendDataTitle1&#8243;);//设置参数===================//区域序号v.setParameter(i++,nAreaOrdID);//字幕区域的横坐标v.setParameter(i++,x);//字幕区域的纵坐标v.setParameter(i++,y);//字幕区域的长度v.setParameter(i++,64);//字幕区域的高度v.setParameter(i++,hight);//显示屏类型v.setParameter(i++,2);//点阵类型v.setParameter(i++,1);//字幕区域显示字体v.setParameter(i++,p);//字幕区域显示字号v.setParameter(i++,big);//字幕区域显示颜色; 1：红色；2：绿色；3：黄色v.setParameter(i++,1);//粗体；1：粗体；0正常v.setParameter(i++,0);//斜体；1：斜体；0正常v.setParameter(i++,0);//下划线；1：下划线；0正常v.setParameter(i++,0);//字幕区域显示的字幕滚动信息v.setParameter(i++,pTitle);//字幕区域显示特技；具体特技特征字见注1；v.setParameter(i++,nStunt);//字幕区域信息运行速度v.setParameter(i++,nRunSpeed);//字幕区域信息停留时间v.setParameter(i++,nShowTime);//字幕区域信息保存的文件名；v.setParameter(i++,p2);//设置返回值类型//v.setRetVal(Type.INT);v.invoke();}catch(Exception e){e.printStackTrace();}}//设置亮度static void setLight(int a){//设置亮度 SetScreenLight(1&#8211;15) ScreenLight1SetScreenLight(a);int ret=SendDataToComm(&#8220;ScreenLight1&#8243;,0xc8);if(ret==1) System.out.println(&#8220;亮度设置发送成功&#8221;);else System.out.println(&#8220;亮度设置发送失败&#8221;);}//强制开关机static void setState(int a){//强制开关机 SetScreenState(1表示开机 0表示关闭); ScreenStateData1SetScreenState(a);int opendown=SendDataToComm(&#8220;ScreenStateData1&#8243;,0xC4);if(opendown==1) System.out.println(&#8220;开关机发送成功&#8221;);else System.out.println(&#8220;开关机发送失败&#8221;);}//设置屏参static void setParameter() throws NativeException, IllegalAccessException{//设置显示屏参数 SetScreenParameter(); ParametetData1SetScreenParameter();int par=SendDataToComm(&#8220;ParametetData1&#8243;,0xC1);if(par==1) System.out.println(&#8220;显示屏参数发送成功&#8221;);else System.out.println(&#8220;显示屏参数发送失败&#8221;);}// UnionAreaDataToFile 1：区域文件；0：非区域文件； 区域序号；从1开始；//0：在原文件下添加合并信息文件；1：删除原文件信息，重新创建合并信息文件//发送字幕 message1显示上面 message2显示下面public static void SendMessage(String message1,String message2){GetAllDataHead();UnionAreaDataToFile(0,0,&#8221;SendAllDataHead1&#8243;,1);//16是字幕显示高度 12是字体大小SetScreenTitle(1,0,0,16,12,message1,1,1,2);UnionAreaDataToFile(1,1,&#8221;SendDataTitle1&#8243;,0);SetScreenTitle(2,0,16,16,12,message2,1,1,2);UnionAreaDataToFile(1,2,&#8221;SendDataTitle1&#8243;,0);//设置字幕 SetScreenTitle(); SendDataTitle1//SetScreenTitle();int title=SendDataToComm(&#8220;SendAllData1&#8243;,0xD1);if(title==1) System.out.println(&#8220;向显示屏发送数据成功&#8221;);else System.out.println(&#8220;向显示屏发送数据失败&#8221;);}// 发送字幕 message1显示上面 全屏显示public static void SendOne(String message1){GetAllDataHead();UnionAreaDataToFile(0,0,&#8221;SendAllDataHead1&#8243;,1);SetScreenTitle(1,0,0,32,24,message1,1,1,2);UnionAreaDataToFile(1,1,&#8221;SendDataTitle1&#8243;,0);//设置字幕 SetScreenTitle(); SendDataTitle1//SetScreenTitle();int title=SendDataToComm(&#8220;SendAllData1&#8243;,0xD1);if(title==1) System.out.println(&#8220;向显示屏发送数据成功&#8221;);else System.out.println(&#8220;向显示屏发送数据失败&#8221;);}public static void main(String[] args) {try{//1~15 亮度增加//setLight(1);//0关机 1 开机//setState(1);//设置屏参//setParameter();SendMessage(&#8220;浙A-T56865&#8243;,&#8221;杭州威玛计算机系统有限公司&#8221;);//SendOne(&#8220;中国你好&#8221;);}catch(Exception ne){System.err.println(&#8220;listAllDevice NativeException!&#8221;);//releaseCard();ne.printStackTrace();}}} 

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/java-led-dll.php" title="java led dll">阅读全文——共7353字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/java-led-dll.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c#路径图片缩略</title>
		<link>http://www.yippeesoft.com/blog/p/c%e8%b7%af%e5%be%84%e5%9b%be%e7%89%87%e7%bc%a9%e7%95%a5.php</link>
		<comments>http://www.yippeesoft.com/blog/p/c%e8%b7%af%e5%be%84%e5%9b%be%e7%89%87%e7%bc%a9%e7%95%a5.php#comments</comments>
		<pubDate>Fri, 23 Oct 2009 07:37:13 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Thumbnail]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/c%e8%b7%af%e5%be%84%e5%9b%be%e7%89%87%e7%bc%a9%e7%95%a5.php</guid>
		<description><![CDATA[try

{

&#160;&#160;&#160; // Create an Image object from a file.

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/c%e8%b7%af%e5%be%84%e5%9b%be%e7%89%87%e7%bc%a9%e7%95%a5.php" title="c#路径图片缩略">阅读全文——共1188字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/c%e8%b7%af%e5%be%84%e5%9b%be%e7%89%87%e7%bc%a9%e7%95%a5.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CreateToolhelp32Snapshot dump fail</title>
		<link>http://www.yippeesoft.com/blog/p/createtoolhelp32snapshot-dump-fail.php</link>
		<comments>http://www.yippeesoft.com/blog/p/createtoolhelp32snapshot-dump-fail.php#comments</comments>
		<pubDate>Thu, 22 Oct 2009 08:40:23 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[CreateToolhelp32Snapshot]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[vc]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/createtoolhelp32snapshot-dump-fail.php</guid>
		<description><![CDATA[&#160;// TODO: 在此添加控件通知处理程序代码HANDLE Hand&#160; = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, 2256);MODULEENTRY32 lppe;memset(&#38;lppe,0,sizeof(MODULEENTRY32));&#160;lppe.dwSize = sizeof(MODULEENTRY32);BOOL&#160; found = Module32First(Hand, &#38;lppe);CFile&#160;myFile;

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/createtoolhelp32snapshot-dump-fail.php" title="CreateToolhelp32Snapshot dump fail">阅读全文——共1473字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/createtoolhelp32snapshot-dump-fail.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wpf显示GIF</title>
		<link>http://www.yippeesoft.com/blog/p/wpf%e6%98%be%e7%a4%bagif.php</link>
		<comments>http://www.yippeesoft.com/blog/p/wpf%e6%98%be%e7%a4%bagif.php#comments</comments>
		<pubDate>Fri, 18 Sep 2009 08:59:44 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[wpf]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/wpf%e6%98%be%e7%a4%bagif.php</guid>
		<description><![CDATA[wpf显示GIF

第三方控件用浏览器控件HOST WINFORM的PICTUREBOX用MEDIAELEMENT读取GIF文件自己解码显示调用解码类一个图片一个图片解析出来定时器//Create a Bitmpap Object.&#160;&#160;&#160; Bitmap animatedImage = new Bitmap(&#8220;SampleAnimation.gif&#8221;);&#160;&#160;&#160; bool currentlyAnimating = false;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; //This method begins the animation.&#160;&#160;&#160; public void AnimateImage() &#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (!currentlyAnimating) &#160;&#160;&#160;&#160;&#160;&#160;&#160; {&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; //Begin the animation only once.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ImageAnimator.Animate(animatedImage, new EventHandler(this.OnFrameChanged));&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; currentlyAnimating = true;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }&#160;&#160;&#160; }

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/wpf%e6%98%be%e7%a4%bagif.php" title="wpf显示GIF">阅读全文——共2952字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/wpf%e6%98%be%e7%a4%bagif.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CopyFromScreen截屏</title>
		<link>http://www.yippeesoft.com/blog/p/copyfromscreen%e6%88%aa%e5%b1%8f.php</link>
		<comments>http://www.yippeesoft.com/blog/p/copyfromscreen%e6%88%aa%e5%b1%8f.php#comments</comments>
		<pubDate>Mon, 14 Sep 2009 07:58:10 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[CopyFromScreen]]></category>

		<guid isPermaLink="false">http://www.yippeesoft.com/blog/p/copyfromscreen%e6%88%aa%e5%b1%8f.php</guid>
		<description><![CDATA[CopyFromScreen截屏

传统截屏#region 导入函数&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; [DllImport("gdi32.dll")]&#160;&#160;&#160;&#160;&#160;&#160;&#160; private static extern IntPtr CreateDC(string lpszDriver, string lpszDrivse, string lpszOutput, Int32 lpInitData);

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/copyfromscreen%e6%88%aa%e5%b1%8f.php" title="CopyFromScreen截屏">阅读全文——共1344字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/copyfromscreen%e6%88%aa%e5%b1%8f.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wpf内嵌资源</title>
		<link>http://www.yippeesoft.com/blog/p/wpf%e5%86%85%e5%b5%8c%e8%b5%84%e6%ba%90.php</link>
		<comments>http://www.yippeesoft.com/blog/p/wpf%e5%86%85%e5%b5%8c%e8%b5%84%e6%ba%90.php#comments</comments>
		<pubDate>Mon, 07 Sep 2009 07:42:49 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[wpf]]></category>

		<guid isPermaLink="false">http://www.shengfang.org/blog/p/wpf%e5%86%85%e5%b5%8c%e8%b5%84%e6%ba%90.php</guid>
		<description><![CDATA[做个模拟时钟，搞了几个图片，然后不想放在外部，想内嵌，结果发现一个内嵌，不知道微软为什么搞那么多东东。项目属性里面有个资源；然后文件属性有个编译选项，并且选择项还不少。Resources in Windows Presentation Foundation applications http://nerddawg.blogspot.com/2005/11/resources-in-windows-presentation.html

wpf/silverlight文章推荐阅读 &#8211; Clingingboy &#8211; 博客园http://www.cnblogs.com/Clingingboy/archive/2008/06/25/1230047.html

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/wpf%e5%86%85%e5%b5%8c%e8%b5%84%e6%ba%90.php" title="wpf内嵌资源">阅读全文——共3415字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/wpf%e5%86%85%e5%b5%8c%e8%b5%84%e6%ba%90.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wpf模拟时钟代码实现analogicclock</title>
		<link>http://www.yippeesoft.com/blog/p/wpf%e6%a8%a1%e6%8b%9f%e6%97%b6%e9%92%9f%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0analogicclock.php</link>
		<comments>http://www.yippeesoft.com/blog/p/wpf%e6%a8%a1%e6%8b%9f%e6%97%b6%e9%92%9f%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0analogicclock.php#comments</comments>
		<pubDate>Fri, 04 Sep 2009 12:32:09 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[wpf]]></category>
		<category><![CDATA[代码]]></category>
		<category><![CDATA[模拟]]></category>

		<guid isPermaLink="false">http://www.shengfang.org/blog/p/wpf%e6%a8%a1%e6%8b%9f%e6%97%b6%e9%92%9f%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0analogicclock.php</guid>
		<description><![CDATA[WPF画个时钟真是方便，可是我碰到得问题是，我得用代码实现。这下可真是够麻烦。得把XAML的代码一行行用C#写。然后把DATABIND改为定时器··还没搞清楚DATABIND机制···搞了半天终于OK了。制作简单的WPF时钟 &#8211; 大可山博客[GDI+,WPF, .Net图形图像] &#8211; CSDN博客http://blog.csdn.net/johnsuna/archive/2007/10/26/1845605.aspx

3D Digital Clock for WPF &#8211; Homehttp://solnick.codeplex.com/

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/wpf%e6%a8%a1%e6%8b%9f%e6%97%b6%e9%92%9f%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0analogicclock.php" title="Wpf模拟时钟代码实现analogicclock">阅读全文——共2771字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/wpf%e6%a8%a1%e6%8b%9f%e6%97%b6%e9%92%9f%e4%bb%a3%e7%a0%81%e5%ae%9e%e7%8e%b0analogicclock.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xml转义字符</title>
		<link>http://www.yippeesoft.com/blog/p/xml%e8%bd%ac%e4%b9%89%e5%ad%97%e7%ac%a6.php</link>
		<comments>http://www.yippeesoft.com/blog/p/xml%e8%bd%ac%e4%b9%89%e5%ad%97%e7%ac%a6.php#comments</comments>
		<pubDate>Fri, 04 Sep 2009 11:48:30 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[转义]]></category>

		<guid isPermaLink="false">http://www.shengfang.org/blog/p/xml%e8%bd%ac%e4%b9%89%e5%ad%97%e7%ac%a6.php</guid>
		<description><![CDATA[又碰到转义字符，估计这个是LINUX下JAVA生成的XML，所以只有&#38;#xA;。

没有办法，只好整理了弄下。

 if (c == &#8216;&#38;&#8217;) {

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/xml%e8%bd%ac%e4%b9%89%e5%ad%97%e7%ac%a6.php" title="Xml转义字符">阅读全文——共1582字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/xml%e8%bd%ac%e4%b9%89%e5%ad%97%e7%ac%a6.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OPhone初步印象</title>
		<link>http://www.yippeesoft.com/blog/p/ophone%e5%88%9d%e6%ad%a5%e5%8d%b0%e8%b1%a1.php</link>
		<comments>http://www.yippeesoft.com/blog/p/ophone%e5%88%9d%e6%ad%a5%e5%8d%b0%e8%b1%a1.php#comments</comments>
		<pubDate>Wed, 02 Sep 2009 02:57:31 +0000</pubDate>
		<dc:creator>yippee</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[ophone]]></category>

		<guid isPermaLink="false">http://www.shengfang.org/?p=2370</guid>
		<description><![CDATA[今天转悠转悠，跑到了OPHONE网站去了。

首先去的是：http://www.mmarket.com/

然后进入了开发者社区：http://dev.chinamobile.com/cmdn/supesite/

<span class="readmore"><a href="http://www.yippeesoft.com/blog/p/ophone%e5%88%9d%e6%ad%a5%e5%8d%b0%e8%b1%a1.php" title="OPhone初步印象">阅读全文——共1442字</a></span>]]></description>
		<wfw:commentRss>http://www.yippeesoft.com/blog/p/ophone%e5%88%9d%e6%ad%a5%e5%8d%b0%e8%b1%a1.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
