예제 #1
0
파일: RECT.cs 프로젝트: peppy/pWindowJax
 public RECT(RECT Rectangle)
     : this(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom)
 {
 }
예제 #2
0
파일: RECT.cs 프로젝트: peppy/pWindowJax
 public bool Equals(RECT Rectangle)
 {
     return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
 }