コード例 #1
0
 public static UIColor Lighter(this UIColor self, float percentage)
 {
     return(self.Adjust(Math.Abs(percentage)));
 }
コード例 #2
0
 public static UIColor Darken(this UIColor self, float percentage)
 {
     return(self.Adjust(-1 * Math.Abs(percentage)));
 }