Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1750
SuppressedEvents in Resource Dictionary
posted

Hi!

 

I have the following ResourceDictionary:

<ResourceDictionary  
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
   xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
   xmlns:igDP="http://infragistics.com/DataPresenter"
   mc:Ignorable="d">
 
    <Style x:Key="DataGridFieldSettings" TargetType="{x:Type igDP:XamDataGrid}">
        <Setter Property="FieldSettings">
            <Setter.Value>
                <igDP:FieldSettings AllowRecordFiltering="true"
                                    AllowGroupBy="True" 
                                    AllowEdit="False" 
                                    LabelClickAction="Default"
                                    AutoSizeOptions="Label, DataCells"
                                    AutoSizeScope="Allrecords"
                                    SortComparisonType="Default"/>
            </Setter.Value>
        </Setter>
   </Style>     </ResourceDictionary>  

I want to add the XamDataGrid.SuppressedEvents to the dictionary, but i can't as I cannot find the property in my dictionary definition. Have I overseen a reference?

Thank you!

Parents
No Data
Reply Children