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

Odd UI behavior with theming

2 Answers 59 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Marcus Murray
Top achievements
Rank 1
Marcus Murray asked on 15 Mar 2012, 02:01 PM
This was not a problem before. I was running version 2011.3.1220.1040 before and yesterday I upgraded to the newest version.

I'm using the expression blend theme and the proper foreground color is whitish. Look on this small clip to see what I'm experiencing now: http://screencast.com/t/VP3SQlV93

Why is this happening and how can I fix it?

Regards,
Linus

2 Answers, 1 is accepted

Sort by
0
Dani
Telerik team
answered on 20 Mar 2012, 05:53 PM
Hello Marcus,

Are you using a simple ListBox control with Expression Dark theme? Changes have not been made to the ListBox style from the 2011.3.1220.1040 version  till now. We were not able to reproduce the corrupted foreground issue. Please, send us a testable sample, if possible.

I would suggest that you consider using RadListBox control instead of ListBox.  RadListBox is available since 2012 Q1.

Hope this information helps.

Kind regards,
Dani
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
0
Linus
Top achievements
Rank 1
answered on 22 Mar 2012, 01:47 PM
Hi!

I'm the one who wrote the post above, logged in as a colleague.

Actually I'm using a RadTreeView. I don't have time to create a new demo project now unfortunately. But I can give you the XAML I'm using if that helps. The namespace cm is Caliburn Micro.

<ScrollViewer VerticalScrollBarVisibility="Auto">
    <Grid>
        <telerikNavigation:RadTreeView
                  ItemsSource="{Binding Jobs}"
                  ItemTemplate="{StaticResource nameTemplate}"
                  cm:Message.Attach="[ItemDoubleClick] = [DomainObjectDoubleClicked($eventArgs)]"
                  IsDragDropEnabled="True"
                  x:Name="JobsTreeView" >
            <telerikNavigation:RadContextMenu.ContextMenu>
                <telerikNavigation:RadContextMenu
                      cm:Bind.Model="{Binding JobsContextMenuViewModel}"
                      cm:Message.Attach="[Event Opened] = [ContextMenuOpened($source)]"
                                              >
                </telerikNavigation:RadContextMenu>
            </telerikNavigation:RadContextMenu.ContextMenu>
        </telerikNavigation:RadTreeView>
 
        <telerik:RadButton Content="Add" HorizontalAlignment="Right" Margin="5" VerticalAlignment="Top" Grid.Row="0"
                    cm:Message.Attach="[Event Click] = [AddJob()]"/>
    </Grid>
</ScrollViewer>
Tags
General Discussions
Asked by
Marcus Murray
Top achievements
Rank 1
Answers by
Dani
Telerik team
Linus
Top achievements
Rank 1
Share this question
or