Jump to content
LaunchBox Community Forums

CoverFlow question


nosh

Recommended Posts

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!

Link to comment
Share on other sites

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>

 

Link to comment
Share on other sites

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...