300x250 indeterminate1 DevExpress / Winform CheckEdit 컨트롤에서 Indeterminate 값 추가하기. CheckEdit 에는 기본적으로 체크(true) / 언체크(false) 를 출력 할 수 있습니다. 하지만 추가로 불확정(Indeterminate) 상태도 추가해 줄 수 있습니다. checkEdit5.Properties.AllowGrayed = true; 코드를 추가해줘야 합니다. 참고로 체크는 true 값에 해당하고 언체크는 false 값에 해당되며 불확정의 경우 null 값에 해당됩니다. Console.WriteLine( CheckEdit.EditValue ); 코드의 출력 값들을 확인해보면 Checked는 True, UnChecked는 False, Indeterminate는 빈 값을 출력해줍니다. private void CreateCheckEdit() { CheckEdit checkEdit1 = n.. 2019. 4. 14. 이전 1 다음 300x250