那台电脑被爸爸拿到他办公室去了,我给你说思路,核心技术就是把数据写入到ini文件,先把这个在类里面声明了[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
再在后面用上面的两个函数实现,具体做法你可以参考http://wenku.baidu.com/view/5ff382ea81c758f5f61f6722.html