[DEVEXPRESS/WINFORM] ArcScaleRangeBarComponent 클래스 : RoundedCaps 속성을 사용해 범위 막대(Range Bar) 에지 스타일 설정하기
DevExpress/WinForm 2020. 6. 8. 21:11728x90
728x170
▶ MainForm.cs
using DevExpress.XtraEditors;
namespace TestProject
{
/// <summary>
/// 메인 폼
/// </summary>
public partial class MainForm : XtraForm
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainForm()
/// <summary>
/// 생성자
/// </summary>
public MainForm()
{
InitializeComponent();
this.arcScaleComponent.StartAngle = 0f;
this.arcScaleComponent.EndAngle = 270f;
this.arcScaleComponent.Value = 75f;
this.arcScaleRangeBarComponent.RoundedCaps = false;
}
#endregion
}
}
728x90
그리드형(광고전용)