예제 #1
0
파일: Size.cs 프로젝트: kosorin/okeno
 public Size FromPercentage(Rectangle bounds)
 {
     return(new Size(
                Width.FromPercentage(bounds.X, bounds.Width),
                Height.FromPercentage(bounds.Y, bounds.Height)));
 }