Ejemplo n.º 1
0
 private bool Equals(CornerRadius other) {
     return this.TopLeft.Equals(other.TopLeft)
         && this.TopRight.Equals(other.TopRight)
         && this.BottomRight.Equals(other.BottomRight)
         && this.BottomLeft.Equals(other.BottomLeft);
 }
Ejemplo n.º 2
0
 public CornerRadius(double horizontalSize, double verticalSize) {
     this = new CornerRadius(horizontalSize, verticalSize, horizontalSize, verticalSize);
 }
Ejemplo n.º 3
0
 public CornerRadius(double horizontalSize, double verticalSize)
 {
     this = new CornerRadius(horizontalSize, verticalSize, horizontalSize, verticalSize);
 }
Ejemplo n.º 4
0
 public CornerRadius(double uniformSize) {
     this = new CornerRadius(uniformSize, uniformSize, uniformSize, uniformSize);
 }
Ejemplo n.º 5
0
 public CornerRadius(double uniformSize)
 {
     this = new CornerRadius(uniformSize, uniformSize, uniformSize, uniformSize);
 }