CE程序

注:开发工具用VS2008

安装Windows mobile设备中心进行调试。

CE程序

项目平台

CE程序

1.窗体属性设置,然后将size改成238, 320

CE程序

2.效果

CE程序

3.调试过程选择“部署”

CE程序

4.配置文件的简单读写,每个配置节内容保存在文本文件中

       public static string GetConfig(string name)
{
string path = @"\Application\Akcome\Config\" + name + ".txt";
if (!File.Exists(path))
{
MessageBox.Show("无法获取配置:" + name);
return "";
}
string res = "";
using (StreamReader reader = new StreamReader(path, Encoding.Default))
{
res = reader.ReadToEnd();
}
return res;
}
public static void SetConfig(string name, string value)
{
string path = @"\Application\Akcome\Config\" + name + ".txt";
if (File.Exists(path))
File.Delete(path); byte[] buffer = System.Text.Encoding.Default.GetBytes(value); //创建一个FileInfo对象
FileInfo file = new FileInfo(path);
//创建文件
FileStream fs = file.Create();
//写入二进制流
fs.Write(buffer, , buffer.Length);
//关闭文件流
fs.Close();
}
上一篇:Atititjs javascript异常处理机制与java异常的转换.js exception process


下一篇:A*八数码