본문 바로가기
C#/DevExpress

DevExpress / Winform DevExpress 에서 TextEdit의 ReadOnly 속성 부여하기

by HyunS_ 2019. 4. 9.
728x90

Winform에서는 textBox1.ReadOnly = true; 와 같은 방법으로 부여를 하면 되었는데

 

DevExpress 에서 TextEdit의 ReadOnly 속성 하려면

 

아래와 같이 설정하면 된다.

textEdit1.Properties.ReadOnly = false;
textEdit1.Properties.ReadOnly = true;

 

728x90

댓글