バージョン

IsFilterRecord プロパティ (DataRecordCellArea)

これがフィルター レコードである場合は、True を返します(読み取り専用)
シンタックス
'宣言
 
Public ReadOnly Property IsFilterRecord As Boolean
public bool IsFilterRecord {get;}
使用例
Imports Infragistics.Windows
Imports Infragistics.Windows.Controls
Imports Infragistics.Windows.Editors
Imports Infragistics.Windows.DataPresenter
Imports Infragistics.Windows.DataPresenter.Events
using Infragistics.Windows;
using Infragistics.Windows.Controls;
using Infragistics.Windows.Editors;
using Infragistics.Windows.DataPresenter;
using Infragistics.Windows.DataPresenter.Events;
        <igDP:XamDataGrid x:Name="_dp" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
            
            
<igDP:XamDataGrid.Resources>
                
<!--Create a style that targets DataRecordCellArea.-->
                
<Style x:Key="{x:Type igDP:DataRecordCellArea}" TargetType="{x:Type igDP:DataRecordCellArea}">
                    
<Style.Triggers>
                        
<!--Add a trigger that highlights filter record as light-blue.-->
                        
<Trigger Property="IsFilterRecord" Value="true">
                            
<Setter Property="Background" Value="LightBlue" />
                        
</Trigger>
                    
</Style.Triggers>
                
</Style>
            
</igDP:XamDataGrid.Resources>

            
<igDP:XamDataGrid.FieldSettings>
                
<!--Set AllowRecordFiltering to true to display the filter record.-->
                
<igDP:FieldSettings AllowRecordFiltering="true" />
            
</igDP:XamDataGrid.FieldSettings>
            
        
</igDP:XamDataGrid>
参照