2012年5月1日

摘要: 前段时间,闲着无聊,想着就随便写了个聊天室,勉强实现基本功能。用的是WPF+WCF 。下面是截图: 阅读全文
posted @ 2012-05-01 13:58 haiyantai 阅读(660) 评论(3) 推荐(0) 编辑

2012年2月25日

摘要: 刚接触WCF,看了artech的WCF学习之旅(1),照着操作了一次,在进行IIS寄宿时,开始始终不成功。在完成之时写下这篇笔记。 首先编写契约(Contract),代码如下: using System.ServiceModel;namespace xiaohai.WCFService.Cont... 阅读全文
posted @ 2012-02-25 12:44 haiyantai 阅读(2558) 评论(0) 推荐(0) 编辑

2011年9月25日

摘要: 下面是思路图: 再来效果图: 阅读全文
posted @ 2011-09-25 20:42 haiyantai 阅读(422) 评论(0) 推荐(0) 编辑

2011年9月17日

摘要: 先来截图: 由许多个自定义的canvas的小砖块组成,但其中的雷的随机位置没有解决。部分功能没有完善。 下面是主要代码.分享一下: using System;using System.Windows;using System.Windows.Media;using System.Windo... 阅读全文
posted @ 2011-09-17 16:56 haiyantai 阅读(788) 评论(0) 推荐(0) 编辑
 
摘要: 很长一段时间不想学习WPF了,每次开电脑就停留在网页上。不说废话了。。。。。。。 先来一张截图: 这是面板布局中的基本步骤,如果要自定义面板的话,一般选择直接继承自Panel,然后只需重载Messure,Arrange就行。 下面是我的一个示例: 截图: 是一个将控件围绕中心排列的自定义面板,... 阅读全文
posted @ 2011-09-17 16:36 haiyantai 阅读(430) 评论(0) 推荐(0) 编辑

2011年8月28日

摘要: 在博客园逛的时候,看见了周银辉博客上的一个截图程序(http://www.cnblogs.com/zhouyinhui/archive/2010/08/20/1804762.html)。自己心动也想写一个,经历了痛苦才勉强完成了一个半成品,只感觉自己太渺小了。有太多需要学的东西。更何况每天都有新的... 阅读全文
posted @ 2011-08-28 19:51 haiyantai 阅读(4350) 评论(5) 推荐(0) 编辑

2011年8月27日

摘要: 在WPF中使用Areo玻璃效果: 首先定义结构体Margins public struct Margins{ public int left; public int right; public int top; public int bottom; public Margins(thicknes... 阅读全文
posted @ 2011-08-27 15:16 haiyantai 阅读(510) 评论(0) 推荐(0) 编辑

2011年8月26日

摘要: Inline对象的继承树如下: Object--DispatcherObject--DependencyObject--ContentElement--FrameworkContentElement--TextElement--Inline--Run Span---Italic . Bold..H... 阅读全文
posted @ 2011-08-26 14:54 haiyantai 阅读(449) 评论(0) 推荐(0) 编辑
 
摘要: 现附上主要代码: using System;using System.Windows;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Input;using System.Win... 阅读全文
posted @ 2011-08-26 09:58 haiyantai 阅读(3590) 评论(3) 推荐(3) 编辑

2011年8月23日

摘要: 画刷是WPF中最常用的对象之一,主要在System.Windows.Media命名空间内,Brush的继承树为 object---dispatchobject----dependencyObject---Freezable---Animatable---Brush---GradientBrush... 阅读全文
posted @ 2011-08-23 16:24 haiyantai 阅读(2164) 评论(0) 推荐(0) 编辑