private void MainModel_OnLyricsFocusChanged(LyricLineGroupModel item)
 {
     this.Dispatcher.BeginInvoke(new Action(() =>
     {
         this.ctlLyric.ItemsSource = item.Where(e => !string.IsNullOrWhiteSpace(e.Line.Text)).ToArray();
     }));
 }