private void Button_MouseDoubleClick(object sender, MouseButtonEventArgs e)
 {
     Highlighted = !Highlighted;
     if (CxDoubleClick != null)
     {
         CxDoubleClick.Invoke(this, e);
     }
 }
 private void Button_MouseDoubleClick(object sender, MouseButtonEventArgs e)
 {
     Highlighted = !Highlighted;
     if (CxDoubleClick != null)
     {
         CxDoubleClick.Invoke(this, e);
     }
     //CustomSelectionChangedEventArgs tmp;
     if (ColectionParent != null)
     {
         ColectionParent.InvokeSelectionChanged(this);
     }
 }