nosh Posted May 17, 2017 Share Posted May 17, 2017 Is there any way to control the opacity of items that are not selected in the CoverFlow control? In addition, is there any way to add drop shadows or any other styling to the selected item or all items? I can't seem to find anything in the documentation or anyone that has done it, only thing that comes close is City Hunter but that just overlays a grey color over the items that are not selected. Halp! Quote Link to comment Share on other sites More sharing options...
nosh Posted May 17, 2017 Author Share Posted May 17, 2017 NVM I got it. Opacity mask will do it. <coverFlow:FlowControl x:Name="FlowControl" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.Row="2" ImageType="Clear Logo" CurveAmount="0" CameraZPosition="7" VisibleCount="8" PageSize="8" ItemZPosition="1.0" SelectedItemZPosition="1.2" Spacing="1.9"> <coverFlow:FlowControl.OpacityMask> <LinearGradientBrush> <GradientStop Color="Transparent" Offset="0"/> <GradientStop Color="Black" Offset="0.25"/> <GradientStop Color="Transparent" Offset="1"/> </LinearGradientBrush> </coverFlow:FlowControl.OpacityMask> <coverFlow:FlowControl.CoverFactory> <coverFlow:HorizontalWheelCoverFactory /> </coverFlow:FlowControl.CoverFactory> </coverFlow:FlowControl> Quote Link to comment Share on other sites More sharing options...
nosh Posted May 17, 2017 Author Share Posted May 17, 2017 It would still be useful to know if there is any way to apply styles to the selected item or all other items in the CoverFlow. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.