This question is locked. New answers and comments are not allowed.
Hi, based off of a thread posted about changing the background of the popup window i took the code to create a white background, but i get an error that allows me to build but calls an unhandled exception when running. Below is my code.
<Telerik:RadListPicker x:Name="CategoryList" VerticalAlignment="Top" PopupHeader="CATEGORIES" Header="Category" Grid.Row="1" PopupItemTemplate="{StaticResource CategoryPopUpItemTemplate}"> <Telerik:RadListPicker.PopupStyle> <Style TargetType="TelerikPrimitives:RadSelector"> <Setter Property="FontSize" Value="{StaticResource PhoneFontSizeExtraLarge}"/> <Setter Property="FontFamily" Value="{StaticResource PhoneFontFamilySemiLight}"/> <Setter Property="Background" Value="White"/> <Setter Property="HorizontalAlignment" Value="Stretch"/> <Setter Property="VerticalAlignment" Value="Stretch"/> </Style> </Telerik:RadListPicker.PopupStyle></Telerik:RadListPicker>
Below is there i get when highlighting over my XAML
'Error HRESULT E_FAIL has been returned from a call to a COM component'
Any suggestions? Thank you