摘要: http://blogs.windows.com/buildingapps/2015/08/05/build-better-apps-windows-10-by-10-development-series/We’ve been talking about the new capabilities t... 阅读全文
posted @ 2015-09-23 20:03 法的空间 阅读(214) 评论(0) 推荐(0) 编辑
摘要: public IEnumerable GetOpenPopups() { return PresentationSource.CurrentSources.OfType() .Select(h => h.RootVisual) ... 阅读全文
posted @ 2015-09-09 14:42 法的空间 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 最近ms 更新对WPF支持,http://blogs.msdn.com/b/dotnet/archive/2014/11/12/the-roadmap-for-wpf.aspxWork on improving WPF has never really stopped, and bel... 阅读全文
posted @ 2014-11-15 14:47 法的空间 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 最近美国的PM传来消息,说微软在收集开发者的意见,会对WPF进行改进,微软会主要在1) performance 2) interop 3) touch and 4) access to WinRT APIs这4个方面有所改进。期待微软在下一个framwork中能给我们带来一些惊喜吧? 阅读全文
posted @ 2014-10-30 23:22 法的空间 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 最近看到一个bog.http://www.codeproject.com/Articles/818281/Is-WPF-dead-the-present-and-future-of-WPF大体上讲了一下WPF的现状,其实我们从微软的最近的态度也能看出些什么,微软在把精力都转移到了WINRT上面... 阅读全文
posted @ 2014-09-30 22:28 法的空间 阅读(212) 评论(0) 推荐(0) 编辑
摘要: [DllImport("user32.dll")]publicstaticexternIntPtrGetAncestor(IntPtrhWnd,intflags);vardialog=newCustomiDalog(); window=newWindow();window.Content=dialo... 阅读全文
posted @ 2014-05-22 11:14 法的空间 阅读(897) 评论(0) 推荐(0) 编辑
摘要: 高考选专业,不知道大家是什么样的,感觉什么都不懂,就选择了一个就业很好(在那个大学就业率刚刚的专业)通信工程。大学可能和大多数人一样的,玩着读完四年,喜欢搞搞单片机,编程,偶尔得点奖学金,真到要毕业的时候,内心里充满了迷茫。 于是这种情况下,又和当年高考填志愿一样,迷迷茫茫地去了中铁。但是... 阅读全文
posted @ 2014-05-04 23:45 法的空间 阅读(424) 评论(0) 推荐(2) 编辑
摘要: public static byte[] ASCIIHexDecode(byte[] data) { MemoryStream outResult = new MemoryStream(); bool first = true; ... 阅读全文
posted @ 2013-11-07 14:49 法的空间 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 1 private TestTabControl TabControlParent 2 { 3 get 4 { 5 TestTabControl parent = base.Parent as TestTabControl; 6 if (parent != null) 7 { 8 return parent; 9 }10 for ... 阅读全文
posted @ 2013-09-11 11:44 法的空间 阅读(241) 评论(0) 推荐(0) 编辑
摘要: protected virtual void OnSelectionChanged(SelectionChangedEventArgs args) { } 1 public TestTabControl() 2 { 3 KeyEventHandler handler = null; 4 SelectionChangedEventHandler handler2 = null; 5 this._updateIndex = true; 6 this.Sel... 阅读全文
posted @ 2013-09-11 10:39 法的空间 阅读(232) 评论(0) 推荐(0) 编辑