■ RadioGroup 클래스에서 라디오 그룹 크기를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
using System; using DevExpress.XtraEditors; #region 라디오 그룹 크기 설정하기 - SetRadioGroupSize(radioGroup, itemColumnWidth, itemColumnCount) /// <summary> /// 라디오 그룹 크기 설정하기 /// </summary> /// <param name="radioGroup">RadioGroup 객체</param> /// <param name="itemColumnWidth">항목 컬럼 너비</param> /// <param name="itemColumnCount">항목 컬럼 수</param> private void SetRadioGroupSize(RadioGroup radioGroup, int itemColumnWidth, int itemColumnCount) { radioGroup.Properties.Columns = itemColumnCount; int itemRowCount = (int)Math.Ceiling((double)radioGroup.Properties.Items.Count / (double)itemColumnCount); int itemRowHeight = 24; radioGroup.SuspendLayout(); radioGroup.Width = itemColumnWidth * itemColumnCount; radioGroup.Height = itemRowCount * itemRowHeight; radioGroup.ResumeLayout(true); } #endregion |