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

Error Transition Control

1 Answer 75 Views
TransitionControl
This is a migrated thread and some comments may be shown as answers.
Madovi
Top achievements
Rank 1
Madovi asked on 07 Jun 2010, 10:36 PM
Good morning,
 I would like to use the transition control to avoid building a storyboard.

My Code is :

private

 

 

void btnDisplay_Click(object sender, RoutedEventArgs e)

 

{

 

 

try

 

{

 

 

for (int i = 1; i < 9; i++)

 

{

 

 

Image myImg = new Image();

 

myImg.Source =

 

new BitmapImage(new Uri("C:\\00002512\\00000000" + i.ToString() + ".TIF", UriKind.Absolute));

 

 

 

this.TransitionControl1.Content = myImg;

 

 

 

this.radProgressBar1.Value = i;

 

 

}

}

 

 

catch (Exception ex)

 

{

 

 

MessageBox.Show(ex.Message);

 

}

}

I get this error : "Cannot perform action because the specified Storyboard was not applied to this object for interactive control." when I try to load the second image.

Can you help me?

thanks in advance
   Max

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 09 Jun 2010, 12:31 PM
Hello Madovi,

 Could you please open a support ticket and send us a sample project that reproduces the problem? This would help us investigate what causes it and help you fix the issue.

Sincerely yours,
Miroslav Nedyalkov
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
TransitionControl
Asked by
Madovi
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or