摘要:
很好的学习资料 http://karlshifflett.wordpress.com/2011/06/29/boise-prism-unity-wpf-mvvm-code-and-decks/ https://skydrive.live.com/?cid=51de981e071f222b&sc=documents&uc=1&id=51DE981E071F222B%21321# 阅读全文
摘要:
中文简要:http://www.ruanyifeng.com/blog/2011/07/mathematical_constant_e.html英文原文:http://betterexplained.com/articles/an-intuitive-guide-to-exponential-functions-e/其它参考:http://zh.wikipedia.org/wiki/72%E6%B3%95%E5%89%87 阅读全文
摘要:
南怀瑾:人有三个基本错误是不能犯的,一是德薄而位尊,二是智小而谋大,三是力小而任重。 阅读全文
摘要:
α Α alpha'ælfəβΒbeta'bi:tə, 'beitəγΓgamma'gæməδΔdelta'deltəεΕepsilonep'sailən, 'epsilənζΖzeta'zi:təηΗeta'i:təθΘtheta'θi:təιΙiotaai'əutəκΚkappa'kæpəλ∧lambda'læmdəμΜmumju:νΝnunju:ξΞxiksai, ksi:οΟomicron... 阅读全文
摘要:
以下几张图摘自:http://blog.ednchina.com/frankie_wang/1460374/message.aspx 以下文字摘自:http://cp.literature.agilent.com/litweb/pdf/70874-90023.pdf Measurement Definitions Extinction Ratio This measurement is th... 阅读全文
摘要:
让 APP 发送和处理自定义消息 1,自定消息;由于 app 不是继承与窗口类,所以不能向窗口那样 send 或 post message; 2,可以直接在 app 中 post thread message,例如这里的 WM_APP1;也可以从窗口中 post WM_COMMAND,例如这里的 WM_APP2; 2,防止 thread message 丢失,下面这个例子中,WM_APP2在主窗口... 阅读全文
摘要:
通常需要:1,设置窗口的父子关系;2,确定弹出窗口的初始显示位置; void CMainFrame::OnDoSomething() { WndWpf^ wnd = gcnew WndWpf(); WindowInteropHelper^ wndHelper = gcnew WindowInteropHelper(wnd); IntPtr ptr(this->GetSafeHwnd()); wnd... 阅读全文
摘要:
chm文件本质上就是个压缩文件,使用7z压缩软件就可以open Archive, 看到所有的这些内容。 如果想用代码读取,要知道 topic 和 subtopic : this.webBrowser1.Navigate("mk:@MSITStore:E:\\xxx.chm::/xxx_aa.htm"); - 阅读全文
摘要:
To instrument a binary using the command-line tools http://msdn.microsoft.com/en-us/library/aa985635.aspx 链接的文档中有个错误,第4步中,start:/trace 应该是 /start:trace 使用 IDE 时,总是出现 “The process cannot access the f... 阅读全文
摘要:
比如你的.net程序分配了很多内存,即使某些对象不需要了,但是由于各种原因,垃圾回收不能将其回收,这也是内存泄漏,如何避免,阅读:How to detect and avoid memory and resources leaks in .NET applications 阅读全文