Beispiel #1
0
 public nabgen()
 {
     InitializeComponent();
     
     listBoxLog = new ListBoxLog(listBox1);
     Thread thread = new Thread(LogStuffThread);
     thread.IsBackground = true;
     thread.Start();
 }