This is a migrated thread and some comments may be shown as answers.

Beta Coverflow : Navigation & Mouse Wheel

3 Answers 55 Views
CoverFlow
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 07 Oct 2009, 03:34 PM
Hi

Im using the 2009.3.916.1030 build coverflow and I cannot see how to display the scrollbar navigation which was achievable in the previous release using the NavigationPanelVisibility property - this property seems to have disappeared ?

Also I want to be able to scroll the mouse wheel to navigate through my coverflow items and have tried implementing the MouseWheelEvent using a variation of the code in this page however my event handler never gets called.

Any ideas ?

Sample code is below.  Thanks

XAML
<telerikNavigation:RadCoverFlow x:Name="coverFlow" Background="Transparent"
            OffsetY="75"
            CameraViewpoint="Center"
            RotationY="40"
            ItemScale="0.75"
            ItemWidth="225"
            ItemHeight="225"
             MouseWheel="coverFlow_MouseWheel"
            ContentType="Image">

.CS
 void coverFlow_MouseWheel(object sender, MouseWheelEventArgs e) 
        { 
            if (e.Delta < 0
            { 
                if (this.coverFlow.SelectedIndex < this.coverFlow.Items.Count
                    this.coverFlow.SelectedIndex += 1; 
            } 
            else 
            { 
                if (this.coverFlow.SelectedIndex > 0) 
                    this.coverFlow.SelectedIndex -1
            }  
        } 

3 Answers, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 08 Oct 2009, 12:21 PM
Hello Steve,

The NavigationPanel was removed from the CoverFlow, because in Silverlight 3 you could use Bindings with ElementName and easily implement it outside of the CoverFlow control. Please, take a look at the following article that gives more information how you can achieve this: http://blogs.telerik.com/hristoborisov/posts/09-10-06/navigation_for_coverflow.aspx.

The MouseScroll should work out-of-the-box without implementing it from the outside. Could you please open a support ticket and send us a project that represents the problem? This would help us a lot in finding out what the problem is.

Kind regards,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Joe Giese
Top achievements
Rank 1
answered on 12 Feb 2010, 04:14 AM
For some reason Mouse Wheel is not working for me. I have seen it on a demo app but within my code it is not working.
0
Valeri Hristov
Telerik team
answered on 17 Feb 2010, 09:04 AM
Hi Martin,

Could you please, open a new support ticket and send us a simple application that can be used to observe the problem? In RadCoverFlow we are using the Silverlight mouse wheel events, so generally this could be a problem in Silverlight, or there is another control that is handling the events and they do not reach the CoverFlow.

Greetings,
Valeri Hristov
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
CoverFlow
Asked by
Steve
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Joe Giese
Top achievements
Rank 1
Valeri Hristov
Telerik team
Share this question
or