コード例 #1
0
ファイル: Rectangle.cs プロジェクト: adamabdelhamed/PowerArgs
 public Rectangle(Point location, Size size)
     : this()
 {
     this.Location = location;
     this.Size = size;
 }
コード例 #2
0
ファイル: Rectangle.cs プロジェクト: adamabdelhamed/PowerArgs
 public Rectangle(int x, int y, int w, int h)
     : this()
 {
     Location = new Point(x, y);
     Size = new Size(w, h);
 }