摘要:
使用.Net编写Windows程序,对于窗体控制常见项目 1、让窗体在启动时在指定位置出现 form1.StartPosition Manual CenterScreen WindowsDefaultLocation (default) WindowsDefaultBounds CenterParent 只有在窗体启动前设置才有效。 2、设置窗体的图标 form1.Icon 3、设置该窗体成为多个... 阅读全文
摘要:
这是我在使用坚石诚信的ET99产品时将信息写为ini文件的一段代码: FileStream fs = new FileStream("log.ini", FileMode.Append, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); DateTime time = DateTime.Now; sw.WriteLine(time... 阅读全文
摘要:
C#编写一段读写TXT文本的小程序 阅读全文