注:开发工具用VS2008
安装Windows mobile设备中心进行调试。
项目平台
1.窗体属性设置,然后将size改成238, 320
2.效果
3.调试过程选择“部署”
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();
}