728x90
728x90
SMALL

컨트롤 3

[C#] 컨트롤에 들어갈 문자열의 폭과 높이 구하기

1. 소스/// /// 컨트롤에 들어갈 문자열의 폭과 높이를 구한다. /// /// 문자열 /// 컨트롤 /// 폭과 높이 static public SizeF GetStringSize(string str, Control ctrl) { try { float wi = float.MinValue, hi; Font font = ctrl.Font; Bitmap tmpBit = new Bitmap(1, 1); Graphics graphic = Graphics.FromImage(tmpBit); Brush TextColor = Brushes.Black; graphic.DrawString(str, font, TextColor, new PointF(0, 0), StringFormat.GenericDefault); va..

유용한 정보 2025.04.16

[C#] 컨트롤에 들어갈 문자열에서 가장 큰 폭과 높이 구하기

1. 소스/// /// 컨트롤에 들어갈 문자열에서 가장 큰 폭과 높이를 구한다. /// /// 문자열 /// 컨트롤 /// 폭과 높이 static public SizeF GetMaxSize(IEnumerable strings, Control ctrl) { try { float wi = float.MinValue, hi = 0; foreach (string v in strings) { SizeF size = GetStringSize(v, ctrl); hi += size.Height; if (size.Width > wi) wi = size.Width; } return new SizeF(wi, hi); } catch (Exception ex) { KLog.Write(ex.ToString()); } retu..

유용한 정보 2025.04.16
728x90
728x90
LIST