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
80
Background Color of XamDataCards
posted

How do I set the background on a XamDataCard?

Parents
No Data
Reply
  • 17475
    Offline posted

    Hello Darlo,

    In order to change the background of the XamDataCards you can use the Background property and set it to some color: Background="Azure". If you want to change the color of the DataRecordCellArea in the CardViewCard items of the XamDataCards you can set a style:

    <Style TargetType="{x:Type igDP:DataRecordCellArea}">

                <Setter Property="Background" Value="Yellow"/>

            </Style>

    Please let me know if you have any questions on the matter.

Children