Пример #1
0
 public static Rectangle GetResolutionRectangle(RDPResolutions resolution)
 {
     string[] resolutionParts = null;
     if (resolution != RDPResolutions.FitToWindow & resolution != RDPResolutions.Fullscreen & resolution != RDPResolutions.SmartSize)
     {
         resolutionParts = resolution.ToString().Replace("Res", "").Split('x');
     }
     if (resolutionParts == null || resolutionParts.Length != 2)
     {
         return(new Rectangle(0, 0, 0, 0));
     }
     else
     {
         return(new Rectangle(0, 0, Convert.ToInt32(resolutionParts[0]), Convert.ToInt32(resolutionParts[1])));
     }
 }
 public static Rectangle GetResolutionRectangle(RDPResolutions resolution)
 {
     string[] resolutionParts = null;
     if (resolution != RDPResolutions.FitToWindow & resolution != RDPResolutions.Fullscreen & resolution != RDPResolutions.SmartSize)
     {
         resolutionParts = resolution.ToString().Replace("Res", "").Split('x');
     }
     if (resolutionParts == null || resolutionParts.Length != 2)
     {
         return new Rectangle(0, 0, 0, 0);
     }
     else
     {
         return new Rectangle(0, 0, Convert.ToInt32(resolutionParts[0]), Convert.ToInt32(resolutionParts[1]));
     }
 }