728x90
SearchControl 의 ButtonClick 이벤트에서 Search 버튼에 대한 이벤트를 처리하려면
ButtonPressedEventArgs 인자로 들어온 e 값에서 구분할수 있다.
if (e.Button.Kind == ButtonPredefines.Search) ..
Clear 버튼에 대한 이벤트를 처리하려면
if (e.Button.Kind == ButtonPredefines.Clear) ..
SearchControl 의 Button Event 에서는 기본적으로 두 버튼에 대해 이벤트가 처리된다.
728x90
'DevExpress' 카테고리의 다른 글
[DevExpress] XtraScrollableControl 에서 컨트롤 삽입 후에도 휠로 스크롤 가능하게 하기 (0) | 2019.09.19 |
---|---|
[DevExpress] CheckedComboBoxEdit 에 PlaceHolderText 적용하기 (0) | 2019.07.02 |
[DevExpress] CheckedListBoxControl - 가로로 정렬하기 (0) | 2019.06.06 |
[DevExpress] CheckedListBoxControl - BackColor 를 Transparent 로 지정하기 (0) | 2019.06.06 |
[DevExpress] SearchControl (0) | 2019.05.20 |