随笔分类 -  wince 开发中遇到问题

c# 编程修改 wince 系统时间
摘要:[StructLayout(LayoutKind.Sequential)] public struct SYSTEMTIME { public ushort wYear; public ushort wMonth... 阅读全文
posted @ 2015-01-19 10:03 倾天 阅读(539) 评论(0) 推荐(0)
C# wince 实现软件忙鼠标状态改变
摘要:eg:Cursor.Current = Cursors.WaitCursor;dosomething(); Cursor.Current = Cursors.Default; Cursor.Current = Cursors.WaitCursor;//等待Cursor.Current = Curs... 阅读全文
posted @ 2015-01-15 15:16 倾天 阅读(453) 评论(0) 推荐(0)
wince c# 创建桌面快捷方式 .
摘要:static void Create() { string PathGPRS = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName()... 阅读全文
posted @ 2014-11-28 09:48 倾天 阅读(316) 评论(0) 推荐(0)
vs2008 wince 通过字符串对控件操作
摘要:例如:我们知道控件名为"textbox1"需要对textbox1进行赋值;通常我们只要textbox1.text = "你好";即可 此处我们是通过"textbox1"获得控件textbox1(很绕口,我找资料都不知道该怎么搜)// /// 在winform中查找控件 ... 阅读全文
posted @ 2014-09-23 11:56 倾天 阅读(329) 评论(0) 推荐(0)