■ ProgressBarControl 클래스의 Properties.ShowTitle 속성을 사용해 텍스트 표시를 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 |
using DevExpress.XtraEditors; ProgressBarControl progressBarControl = new ProgressBarControl(); progressBarControl.Properties.ShowTitle = true; progressBarControl.Properties.ShowTitle = false; |