This question is locked. New answers and comments are not allowed.
How do i change the foreground text color in the RadBreadCrumb? When I set the Foreground property to White (see below), it works fine in the designer. But when I run the application, the breadcrumb text is always black. My Xaml is simple:
<telerik:RadBreadcrumb x:Name="bcCrumbs" VerticalAlignment="Top" Header="{Binding Root}" Width="250" Grid.Column="2" HorizontalAlignment="Right" CurrentItemChanged="RadBreadcrumb_CurrentItemChanged" IsIconVisible="False" IsHistoryEnabled="True" IsTextSearchEnabled="False" IsTextModeEnabled="False" ItemsSource="{Binding Root.Children}" TextModePath="Path" BorderThickness="0" Foreground="White" Background="Yellow" HierarchicalItemsSource="Children" HeaderMemberPath="DisplayText" HierarchicalMemberPath="DisplayText"> </telerik:RadBreadcrumb> StyleManager.ApplicationTheme = new MetroTheme();