Hi there,
I have a simple problem, I have set of buttons like navigation tabs and they are all in Liner Gradient color when the button is clicked I want to change the active button color to white then when clicking the other buttons the first button return back to be that gray gradient. I have accomplished the first part which make the color white but linear gradient won’t work inside a While Tage
<Panel ux:Name="page1Tab" Margin="0,0,0,0">
<Tab ux:Name="FirstTap" CornerRadius="3" Margin="5,0,0,0" TextColor="#6d6d6d" Text="Embarced">
<Clicked>
<Set navigation.Active="page1" />
<Change FirstTap.Color="#fff" />
<Set SecondTap.LinearGradient>
<LinearGradient StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#fff" />
<GradientStop Offset="1" Color="#ccc" />
</LinearGradient>
</Set>
</Clicked>
</Tab>
</Panel>
Any suggestion what should I do …!?