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

Initial Focus Problem

2 Answers 64 Views
CoverFlow
This is a migrated thread and some comments may be shown as answers.
Catia Alexandra
Top achievements
Rank 1
Catia Alexandra asked on 10 Jan 2011, 02:17 PM
Hi,

CoverFlow.SetFocus() don't work.

The keyboard navigation only work's when i click on CoverFlow.

I Try SetFocus() to solve but...nothing!!

There is my simple code:

Public SlideShow(Microsistec.Domain.Entity.Property Property)
        {
            // Required to initialize variables
            InitializeComponent();
 
            this.Property = Property;
 
            this.SetValue(Grid.RowSpanProperty, 50);
            this.SetValue(Grid.ColumnSpanProperty, 50);
 
            foreach(Photo p in Property.Photo)
            {
                System.Windows.Controls.Image i = new System.Windows.Controls.Image();
                i.Source = p.Data.MediumPhoto.ToBitmap();
                ContentPresenter c = new ContentPresenter();
                Border b = new Border();
                b.BorderThickness = new Thickness(5);
                b.BorderBrush = new SolidColorBrush(Color.FromArgb(0, 0, 0, 0));
                b.Child = i;
                c.Content = b;
                list.Add(c);
 
            }
 
            CoverFlow.ItemsSource = list;
            CoverFlow.Focus();
        }

Obs:

- After the click event is fired every think work's well , but i need this initial state.

- In others samples on forum , this initial state is the same, this is a CoverFlow bug?


2 Answers, 1 is accepted

Sort by
0
Catia Alexandra
Top achievements
Rank 1
answered on 13 Jan 2011, 02:16 PM
bug????
0
George
Telerik team
answered on 13 Jan 2011, 02:20 PM
Hi Catia,


We reproduced the issue. Thank you for reporting this bug, it helps us in improving our products. I am glad to update your Telerik points for reporting this abnormal behavior of our RadCoverFlow control. We will investigate the cause for this issue and we will fix it in one of our future releases. You can track this progress in our Public Issue Tracking System (PITS) with Issue ID = 4610.

 


Best wishes,
George
the Telerik team
Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>
Tags
CoverFlow
Asked by
Catia Alexandra
Top achievements
Rank 1
Answers by
Catia Alexandra
Top achievements
Rank 1
George
Telerik team
Share this question
or