随笔分类 -  WPF

摘要:方法1:In the solution property page, check the platform of the assembly that contains "UpdatingMediaElement" and the assmeblies that contain any of the ... 阅读全文
posted @ 2014-11-28 14:45 马语者 阅读(1230) 评论(0) 推荐(0) 编辑
摘要:Introduction Value resolution strategy The magic behind it How to create a DepdencyProperty Readonly DependencyProperties Attached DependencyProperties Listen to dependency property changes ... 阅读全文
posted @ 2014-11-27 17:35 马语者 阅读(426) 评论(0) 推荐(0) 编辑
摘要:错误 1 类型“System.Windows.Markup.IQueryAmbient”在未被引用的程序集中定义。必须添加对程序集“System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”的引用。 D:\VisualStudio\2013\TestClient\TestCl... 阅读全文
posted @ 2014-09-28 11:07 马语者 阅读(5447) 评论(0) 推荐(1) 编辑
摘要:Maximize WPF 3D Performance.NET Framework 4.5As you use the Windows Presentation Foundation (WPF) to build 3D controls and include 3D scenes in your a... 阅读全文
posted @ 2014-09-15 09:14 马语者 阅读(1215) 评论(0) 推荐(0) 编辑
摘要:The ComboBox control is in many ways like the ListBox control, but takes up a lot less space, because the list of items is hidden when not needed. The ComboBox control is used many places in Windows, ... 阅读全文
posted @ 2014-07-16 15:25 马语者 阅读(63863) 评论(1) 推荐(6) 编辑
摘要:WPF文字的处理是一个比较基础的技能。在使用WPF开发工具时,对于各种文字的处理时经常会遇到的情况。希望大家可以通过实践经验的积累,牢固掌握这一方面知识。 AD:WOT2014:用户标签系统与用户数据化运营培训专场 WPF文字在处理的过程中可以实现许多种方式来满足我们开发人员在实际编程中的需求。在这里将会为大家呈现一种WPF文字作为标题时的竖排方式。 WPF设备输入方式总结 ... 阅读全文
posted @ 2014-07-14 18:16 马语者 阅读(6948) 评论(0) 推荐(1) 编辑
摘要:如果线较多时,在画布中用Path或Line生成时会比较慢。用DrawingVisual可以快速生成,这个在之前我的博客中已经提到。但在类库形式下生成的无法看到,保存成Image后再加入图层后成功显示。 DrawingVisual drawingVisual = new DrawingVisual(); DrawingContext drawingContext ... 阅读全文
posted @ 2014-07-11 15:59 马语者 阅读(2879) 评论(0) 推荐(0) 编辑
摘要:按照《WIndows Presentation Foundation》中介绍建立的WPF程序,可以在VS2008中创建控制台应用程序所得。创建之后将程序集输出类型改为:Windows应用程序。然后引用几个程序集就可以:system.dll,presentationframework.dll,windowsbase.dll和presentationcore.dll就可以正常运行。 但是在VS201... 阅读全文
posted @ 2014-07-08 16:15 马语者 阅读(449) 评论(0) 推荐(0) 编辑
摘要:Grid是WPF和Silverlight中的一个重要的布局元素,其他的布局元素还有StackPanel, Canvas, Border等等。从字面上说,Grid是一个表格的意思,它的使用也确实很方便,从视觉上很像一个表格的样式,有行,有列的概念,这种效果很适合于需要多多个子控件进行布局,并希望保持左边或者上对齐的效果。 我们来看一个最简单的例子(本文采用Silverlight做演示,在WP... 阅读全文
posted @ 2014-07-08 08:49 马语者 阅读(1058) 评论(0) 推荐(0) 编辑
摘要:大可山 [MSN:a3news(AT)hotmail.com] http://www.zpxp.com 萝卜鼠在线图形图像处理 -------------------------------------------------------------- 老规矩,看图说话。 先看显示效果: (图1) XAML(代码A): ... 阅读全文
posted @ 2014-07-07 17:23 马语者 阅读(7460) 评论(2) 推荐(5) 编辑
摘要:WPF是个用户控件,被WinForm调用。而WinForm是在一个DLL类库中被调用。试了很多方法,都无法将Resource中的图读进程序。用下面的方法总算实现了。 /根据图片的名称,从资源中找到它 public static System.Drawing.Bitmap GetPngFromResources(string pngName) { ... 阅读全文
posted @ 2014-06-25 18:24 马语者 阅读(4037) 评论(0) 推荐(0) 编辑
摘要:下面代码很好的解释了它们之间的区别: ... 阅读全文
posted @ 2014-06-25 09:04 马语者 阅读(3779) 评论(1) 推荐(1) 编辑