
Windows Mobile UI
xyz_lmn
6年+的移动应用开发经验;
在android、ios以及曾经的Symbian、windows mobile等系统下有项目经验。
有手机支付、voip项目、电信相关项目,移动健康项目经历。从事项目设计、架构、接口文档、代码编写工作。
展开
-
AlphaMobileControls
2009-11-04 16:20:38 今天下午测试了一下 AlphaMobileControls 的程序,开始一直有错,经过一个多小时的努力终于解决了,本来想着把错误截图传上来的,可是,解决了错误后,把代码恢复再没有错了。下面传两张测试成功的图片。 Alpha原创 2009-11-04 16:11:00 · 3648 阅读 · 0 评论 -
Windows Mobile 中ComboBox【下拉列表】的使用
【1】使用xml数据源绑定数据 /// /// 从MiddleCateGoryName.xml文件中读出数据添加到(中类别)下拉框中 /// private void ReadMiddleCategoryXml() { DataTable dt = new DataTable();原创 2009-12-27 21:11:00 · 2898 阅读 · 0 评论 -
Windows mobile UI
1、九宫格参考:http://blog.youkuaiyun.com/xyz_lmn/archive/2009/11/11/4797902.aspx 2、自定义listview参考:http://blog.youkuaiyun.com/xyz_lmn/archive/2009/11/13/4808277.aspx原创 2010-02-24 15:27:00 · 2301 阅读 · 0 评论 -
自定义 ListView
主要借鉴了OwnerDrawnListBox类和FontList类 其中OwnerDrawnListBox是继承Control然后重新封装的事件,属性,然后FontListBox再继承并且重新美观控件。 经过自己修改实现了选中区域渐变。 代码: 参考: 1.Mobile开发(列表控件使用原创 2009-11-13 17:10:00 · 2860 阅读 · 0 评论 -
Windows Mobile 九宫格
这两天弄了下九宫格,开始时一点点的弄,放九个Button、9个PictureBox、ListView和imageList组合。九个控件资源大,ListView和imageList组合不能相应变换图像,各有优缺。 在网上翻了一遍,发现基本都是这种形式,九个控件做成九个imagebutton,再一个是用GDI+自己画。具体自己总结了一下: 下载原创 2009-11-11 13:11:00 · 4777 阅读 · 0 评论 -
自定义MessageBox
其实就是一个Form遮挡另一个Form。 The convenience of having custom controls is that they can be usedas normal controls. Where convenient, we adhered to this philosophythroughout the project; e.g. the me原创 2009-11-06 15:11:00 · 3366 阅读 · 0 评论 -
透明背景
绘制背景透明的图片,在有背景色的Form上显示透明图片,这是.NET CF本身提供的方法,关键是最后一个参数。 //在有背景色的Form上显示透明图片(事先准备背景透明的图片) private void Form1_Paint(object sender, PaintEventArgs e) { Assembly asm = A原创 2009-11-06 13:47:00 · 1968 阅读 · 1 评论 -
Dimming the background.
sample下载 实际是用一个Form遮盖另一个。 Ive received a question from the customer the other day asking mehow he can implement functionality of "dimming" background effect whena message box is shown原创 2009-11-06 13:31:00 · 1831 阅读 · 0 评论 -
背景渐变
关键词: 背景渐变、重写OnPaintBackground方法。 GradientFill class and the Win32Helper class可以在这找到 The first thing I started with was to create a gradient background.I found原创 2009-11-06 11:29:00 · 2676 阅读 · 0 评论 -
Windows Mobile上实现可拖动的窗口
转:http://www.cnblogs.com/qilinzhi/archive/2008/04/19/1160977.html 在Windows CE上的Form可以控制它的大小,但是不能像winform上的窗体一样随意拖动,并且当控制Form大小后Form只会显示其工作区,而不会显示它的caption。 为了实现窗体拖动,我们可以使用模拟的方式实现,用鼠标的事件来模拟拖动。最下面有示原创 2010-02-02 12:37:00 · 2227 阅读 · 0 评论