摘要:
前段时间,闲着无聊,想着就随便写了个聊天室,勉强实现基本功能。用的是WPF+WCF 。下面是截图: 阅读全文
2012年5月1日
2012年2月25日
2011年9月25日
摘要:
下面是思路图: 再来效果图: 阅读全文
2011年9月17日
摘要:
先来截图: 由许多个自定义的canvas的小砖块组成,但其中的雷的随机位置没有解决。部分功能没有完善。 下面是主要代码.分享一下: using System;using System.Windows;using System.Windows.Media;using System.Windo... 阅读全文
摘要:
很长一段时间不想学习WPF了,每次开电脑就停留在网页上。不说废话了。。。。。。。 先来一张截图: 这是面板布局中的基本步骤,如果要自定义面板的话,一般选择直接继承自Panel,然后只需重载Messure,Arrange就行。 下面是我的一个示例: 截图: 是一个将控件围绕中心排列的自定义面板,... 阅读全文
2011年8月28日
摘要:
在博客园逛的时候,看见了周银辉博客上的一个截图程序(http://www.cnblogs.com/zhouyinhui/archive/2010/08/20/1804762.html)。自己心动也想写一个,经历了痛苦才勉强完成了一个半成品,只感觉自己太渺小了。有太多需要学的东西。更何况每天都有新的... 阅读全文
2011年8月27日
摘要:
在WPF中使用Areo玻璃效果: 首先定义结构体Margins public struct Margins{ public int left; public int right; public int top; public int bottom; public Margins(thicknes... 阅读全文
2011年8月26日
摘要:
Inline对象的继承树如下: Object--DispatcherObject--DependencyObject--ContentElement--FrameworkContentElement--TextElement--Inline--Run Span---Italic . Bold..H... 阅读全文
摘要:
现附上主要代码: using System;using System.Windows;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Input;using System.Win... 阅读全文
2011年8月23日
摘要:
画刷是WPF中最常用的对象之一,主要在System.Windows.Media命名空间内,Brush的继承树为 object---dispatchobject----dependencyObject---Freezable---Animatable---Brush---GradientBrush... 阅读全文