日期:2014-05-17 浏览次数:20719 次
public Form1()
{
InitializeComponent();
new System.Threading.Thread(delegate()
{
while (this.IsHandleCreated)
{
File.CreateText(string.Format("D:\\temp\\{0}.txt", DateTime.Now.ToString("HH_mm_ss_ff")));
System.Threading.Thread.Sleep(100);
}
}).Start();
}