This question is locked. New answers and comments are not allowed.
In my project, I allow the user to select a background that they want to use. In Silverlight 4, I was using the RadRibbonBar with the image selection on the application menu. I have since switched to Silverlight 5 and the RadRibbonView. I'm trying to do the samething on the backstage item, but it causes the browser to crash most of the time. Sometimes it works fine.
Here is a snippet of my XAML There are more than 2 items, but they are the same thing with a different image source:
After I launch my project, I click on the BackStage button of the RibbonView, then click on the BackStageItem. At that point, it works sometimes, but most of the time the browser crashes with the following in the Internet Explorer has Stopped Working window:
Here is a snippet of my XAML There are more than 2 items, but they are the same thing with a different image source:
<telerik:RadRibbonBackstageItem Header="Background" Icon="Icons/atom16.png">
<StackPanel HorizontalAlignment="Left">
<telerik:RadRibbonButton Width="242" Height="64" Click="BackgroundChange_Click" Size="Large" >
<telerik:RadRibbonButton.Content>
<Image Source="/Images/Background/crm_black.png" Stretch="Fill" />
</telerik:RadRibbonButton.Content>
</telerik:RadRibbonButton>
<telerik:RadRibbonButton Width="242" Height="64" Click="BackgroundChange_Click" Size="Large" >
<telerik:RadRibbonButton.Content>
<Image Source="/Images/Background/crm_blue.png" Stretch="Fill" />
</telerik:RadRibbonButton.Content>
</telerik:RadRibbonButton>
</StackPanel>
</telerik:RadRibbonBackstageItem>
After I launch my project, I click on the BackStage button of the RibbonView, then click on the BackStageItem. At that point, it works sometimes, but most of the time the browser crashes with the following in the Internet Explorer has Stopped Working window:
Problem signature:
Problem Event Name: APPCRASH
Application Name: IEXPLORE.EXE
Application Version: 9.0.8112.16421
Application Timestamp: 4d76255d
Fault Module Name: KERNELBASE.dll
Fault Module Version: 6.1.7601.17651
Fault Module Timestamp: 4e211319
Exception Code: 80000003
Exception Offset: 0000b9bc
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1033
Additional Information 1: b3af
Additional Information 2: b3af06887682a730693c32bbc1ab54eb
Additional Information 3: fb66
Additional Information 4: fb6647f0d7418c77f2fbeef6e2233d29
Any ideas?
Thanks,
-Pete