public ListBoxItem FindByValue(object dataValue)
 {
     return(ListBoxItems.FirstOrDefault(t => t != null && t.Value.Equals(dataValue)));
 }