문제

I would like to make the Alphabetic Sort and Search bar invisible on the Xceed WPF PropertyGrid. How would that be done? I have read through the list of object attributes for the PropertyGrid and did not see any property relating to the search button as a separate UI element within the PG.

도움이 되었습니까?

해결책

You should set following properties:

 <extToolkit:PropertyGrid ShowSearchBox="False" ShowSortOptions="False" />

다른 팁

Acutally, found it:

        PG.ShowSearchBox = false;
        PG.ShowSortOptions = false;
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top