private void loadInfo()
{
bool ret = false;
Action action = new Action(() => {
System.Threading.Thread.Sleep(10);
this.Dispatcher.BeginInvoke(new Action(() =>
{
//
}), System.Windows.Threading.DispatcherPriority.SystemIdle, null);
});
action.BeginInvoke(null, null);
}