public void SetGroupOn(PropertyDescriptor p)
 {
     if (p == null)
     {
         throw new ArgumentNullException();
     }
     if (groupon == null || !groupon.IsProperty(p))
     {
         GroupOn = new PropertyGrouper(p);
     }
 }
 public override bool IsProperty(PropertyDescriptor p)
 {
     return(Grouper.IsProperty(p));
 }