摘要: View Code 1 public partial class MainWindow : Window 2 { 3 public MainWindow() 4 { 5 InitializeComponent(); 6 this.Loaded += (o, e) => 7 { 8 Thread thread = new Thread(ThreadFlush); 9 thread.IsBackground = true;... 阅读全文
posted @ 2012-08-21 15:52 stone87654321 阅读(248) 评论(0) 推荐(0) 编辑