摘要:
WPF 多线程处理(1)WPF 多线程处理(2)WPF 多线程处理(3)WPF 多线程处理(4)WPF 多线程处理(5)WPF 多线程处理(6)开始一个线程处理读取的文件并且更新到listbox中: //处理数据: private void StartBrowser(string path) { UpdateFolderPath invoker = new UpdateFolderPath(DoUpdateFolder); this.Dispatcher.Invoke(invoker, path); ... 阅读全文
摘要:
WPF 多线程处理(1)WPF 多线程处理(2)WPF 多线程处理(3)WPF 多线程处理(4)WPF 多线程处理(5)WPF 多线程处理(6)以下是子窗体的UI: View Code 子窗体的代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows... 阅读全文