文章分類/Infragistics
UltraGrid 中的所有列均啟用過濾功能。如果您不想對特定列使用過濾功能,可以單獨禁用它。
//フィルタ機能を有効化 this.ultraGrid1.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.HeaderIcons; //ID 列のフィルタ機能を無効化 this.ultraGrid1.DisplayLayout.Bands[0].Columns["ID"].AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
您可以看到 ID 列的篩選功能已被禁用。