Skip to content

ActiveRowColor is not working in android release mode #136

@borbirob

Description

@borbirob

Describe the bug
When I set the ActiveRowColor properite it's working fine in debug mode, but not in realese nor in real device.
Tried to set that propertie in different ways but neither was succesfull.

Codes what I tried

<!--In xaml--!>
<dg:DataGrid.ActiveRowColor>
    <Color>#FFB0C4DE</Color>
</dg:DataGrid.ActiveRowColor>

<dg:DataGrid x:Name="dataGrid"
                Grid.Row="1" 
                SelectionEnabled="True" 
                ItemsSource="{Binding SomeItems}"
                SelectedItem="{Binding Selecteditem}"
                RowHeight="50" 
                HeaderHeight="50" 
                BorderColor="Gray"
                HeaderBackground="LightGray" 
                HeaderBordersVisible="True"
                RefreshingEnabled="False"
                ItemSelected="OnRowSelected"
                ActiveRowColor="LightSteelBlue">

//In code behind
dataGrid.ActiveRowColor = Colors.LightSteelBlue;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions