• 2023-06-15WinCE下的文件路径
    在WinCE下,不能用相对路径,必须用绝对路径(FullPath) 来定位文件。如,在ProgramFiles/TestProgram目录下的abc.txt文件,只能用ProgramFiles/TestProgram/abc.txt来定位,而不能用abc.txt定位。如:privatevoidbutton1_Click(objectsender,EventArgse){stringp
  • 2023-04-06winCE 控件篇
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- //页面测试伪数据privatevoidbindNumber(){#region页面数
  • 2023-04-06winCE 页面绘制 例子一则
     效果如下:   usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.IO;usingSystem.Reflection;usingSystem.Drawing.Imaging;n
  • 2022-12-08wince 蓝牙 学习
    蓝牙命令1.向蓝牙设备发送命令bccmd-tbcsp-d/dev/ttymxc1psload-r/etc/bluetooth/BC6QFN.psr-t指定通讯协议bcsp为蓝牙核心串口协议-d指定执行命令的
  • 2022-12-08wince界面优化配置
    wince下隐藏任务栏大概有以下几种方法:(1)通过修改注册表;(2)在应用程序初始化的时候中加入一段代码,将任务栏窗口隐藏。(3)直接修改explorer的代码,重新编译连接。三种方法我都尝试了