摘要:
test http://wenku.baidu.com/view/f93d2bd549649b6648d747b8.html###http://www.cnblogs.com/liuliuyingxia/archive/2012/08/25/2655856.htmlhttp://www.infoq.com/cn/news/2012/03/vs-11-unit-testing-fakeshttp://www.baidu.com/s?wd=fakes%BF%F2%BC%DC&tn=sogouie_dghttp://msdn.microsoft.com/library/dd264975(v= 阅读全文
摘要:
public sealed partial class BlankPage2 : Page { string DialogResult1 = ""; string DialogResult2 = ""; public BlankPage2() { this.InitializeComponent(); Messenger.Default.Register<string>(this, m => { ... 阅读全文
摘要:
使用Messenger类 this.Frame.Navigate(typeof(BlankPage2)); Messenger.Default.Send<object>("dfsdfd"); Messenger.Default.Register<string>(this, m => { if (m!=null) { DialogResult = m.ToString(); } } );额,继续写点东西吧,弄个比较实在点的实例出来,这个实例非常的简单,就是页面通过点击一个按钮,弹出一个ChildWindow来进行选择某条记录,然后将在... 阅读全文
摘要:
书籍:http://blogs.msdn.com/b/mssmallbiz/archive/2012/07/27/large-collection-of-free-microsoft-ebooks-for-you-including-sharepoint-visual-studio-windows-phone-windows-8-office-365-office-2010-sql-server-2012-azure-and-more.aspx教程:http://www.microsoft.com/china/livetocode/win8videos/index.html学生开发专区:htt 阅读全文
摘要:
http://social.msdn.microsoft.com/search/en-us/windows/appsmdsn shilihttp://code.msdn.microsoft.com/windowsapps/Input-Windows-8-gestures-62c6689b/sourcecode?fileId=68704&pathId=721724324http://msdn.microsoft.com/zh-cn/windows/apps/br229516http://msdn.microsoft.com/zh-cn/magazine/jj651572.aspxhttp 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;using System.Runtime.InteropServices;using System.IO;namespace ResourceManage{ #region 设置双缓存,是屏幕不会闪烁 class ListVi... 阅读全文
摘要:
http://wpfinspector.codeplex.com/releases/view/62380 http://snoopwpf.codeplex.com/ http://www.win8y.com http://www.silverlightchina.net/html/windows8/study/2012/0609/16587.html http://www.silverlightchina.net/html/windows8/study/2012/0609/16587.html http://www.cnblogs.com/manuosex/archive/201... 阅读全文
摘要:
#region 线程 //线程一的方法 private void CrossThreadFlush() { while (true) { if (bFirstThread) { continue; } else { //将代理绑定到方法 Flush... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Input;namespace Picture{ public class MyCommand { //最小化命令 public static RoutedCommand SmallCommand = new RoutedCommand(); //最大化命令 public static RoutedCommand BigCo... 阅读全文
摘要:
;Quick task switching with Win+[1,2,...,0];http://www.autohotkey.com/forum/viewtopic.php?t=41542&highlight=taskbar+order+switch#SingleInstance#WinActivateForceLoop 10{n := A_Index-1Hotkey, #%n%, Focus%n%Hotkey, #Numpad%n%, Focus%n%}returnFocus1:FocusButton(1)returnFocus2:FocusButton(2)returnFocu 阅读全文