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
1564
Changing the text color of cell...
posted

Hi,

 I have try to change the text color of the cell with this code, but the cell text remain black.

 

        <Style TargetType="{x:Type igDP:DataRecordCellArea}">
            <Setter Property="BackgroundHover" Value="Red"/>
            <Setter Property="BorderHoverBrush" Value="#FF4B4B4B"/>
            <Setter Property="BackgroundAlternate" Value="#FF3F3C3B"/>
            <Setter Property="BackgroundActive" Value="Orange"/>
            <Setter Property="ForegroundStyle">
                <Setter.Value>
                    <Style>
                        <Setter Property="TextBlock.Foreground" Value="White" />
                    </Style>
                </Setter.Value>
            </Setter>
            <Setter Property="ForegroundHoverStyle">
                <Setter.Value>
                    <Style>
                        <Setter Property="TextBlock.Foreground" Value="White" />
                    </Style>
                </Setter.Value>
            </Setter>
            <Setter Property="ForegroundActiveStyle">
                <Setter.Value>
                    <Style>
                        <Setter Property="TextBlock.Foreground" Value="White" />
                    </Style>
                </Setter.Value>
            </Setter>
            <Setter Property="ForegroundAlternateStyle">
                <Setter.Value>
                    <Style>
                        <Setter Property="TextBlock.Foreground" Value="White" />
                    </Style>
                </Setter.Value>
            </Setter>
            <Setter Property="ForegroundSelectedStyle">
                <Setter.Value>
                    <Style>
                        <Setter Property="TextBlock.Foreground" Value="White" />
                    </Style>
                </Setter.Value>
            </Setter>
        </Style>

Parents Reply Children
No Data