Jump to content
LaunchBox Community Forums

Recommended Posts

Posted

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!

Posted

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>

 

Posted

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. 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...