public WCFScreenInformation(WCFRectangle bounds, string name, bool isPrimary)
 {
     this.Bounds   = bounds;
     this.DeviceID = name;
     this.Primary  = isPrimary;
 }
 public static Rectangle ToNET(WCFRectangle r)
 {
     return(new Rectangle(ToNET(r.Location), ToNET(r.Size)));
 }