lstDB.SelectedIndex = index++;
lstDB.ScrollIntoView(lstDB.SelectedItem);
Dispatcher.Invoke((ThreadStart)(() => { }),
DispatcherPriority.ApplicationIdle);
Thread.Sleep(20); //0.02초 딜레이
SqlConnection conn = new SqlConnection(connStr);
if (conn.State == ConnectionState.Closed)
conn.Open();
conn.Close();