문제

I have a simple DevExpress gridview in winform application, I keep passwords in the grid and I want them to be look liked "*" when the password cell is not focuesed. if the cell is focused, I want to display the real password.

I have this code on Form Load

 txtPasswordGridColumn.PasswordChar='*';

I wanted to remove '*' when cell is focused but couldnt find the proper event on grid.And if I remove the PasswordChar, then I suppose it will display all passwords since PasswordChar is removed from the COLUMN. What is the proper way to do this?

도움이 되었습니까?

해결책

GridView has plenty of suitable events: FocusedRowChanged, FocusedColumnChanged, ShownEditor,...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top