■ RadioGroup 클래스의 Properties.GlyphAlignment 속성을 사용해 글리프를 정렬하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 |
using DevExpress.Utils; using DevExpress.XtraEditors; RadioGroup radioGroup = new RadioGroup(); radioGroup.Properties.GlyphAlignment = HorzAlignment.Near; radioGroup.Properties.GlyphAlignment = HorzAlignment.Center; radioGroup.Properties.GlyphAlignment = HorzAlignment.Far; |