簡體   English   中英

在Xceed WPF PropertyGrid中,如何使“搜索”和“排序”按鈕不可見

[英]In Xceed WPF PropertyGrid how to make Search and Sort buttons invisible

我想使Xceed WPF PropertyGrid上的字母排序和搜索欄不可見。 怎么辦? 我已經閱讀了PropertyGrid的對象屬性列表,並且沒有看到與搜索按鈕相關的任何屬性作為PG中的單獨UI元素。

您應該設置以下屬性:

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

最終發現:

        PG.ShowSearchBox = false;
        PG.ShowSortOptions = false;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM