300x250 TextEdit6 DevExpress / Winform DevExpress의 TextEdit에 글 작성 시 패스워드 입력과 같이 입력 문자 안보이게 하기. DevExpress의 윈폼에서 TextEdit에 문자 입력 시 문자 대신 다른 기호가 보이도록 할 수 있습니다. textEdit1.Properties.PasswordChar = '*'; 위 코드와 같이 설정하면 되며 기호는 마음대로 변경이 가능합니다. 2019. 4. 9. DevExpress / Winform DevExpress 에서 TextEdit의 ReadOnly 속성 부여하기 Winform에서는 textBox1.ReadOnly = true; 와 같은 방법으로 부여를 하면 되었는데 DevExpress 에서 TextEdit의 ReadOnly 속성 하려면 아래와 같이 설정하면 된다. textEdit1.Properties.ReadOnly = false; textEdit1.Properties.ReadOnly = true; 2019. 4. 9. 이전 1 2 다음 300x250