This question is locked. New answers and comments are not allowed.
Can someone please help me to understand why the image is not applied to the button?
<DataTemplate x:Key="PaneButtonsTitleTemplate"> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <ContentPresenter Content="{Binding}" Margin="0,0,75,0" /> <StackPanel Grid.Column="1" HorizontalAlignment="Right" Orientation="Horizontal" > <telerik:RadButton Background="{StaticResource FillColor}" Foreground="{StaticResource TextColor}" Command="telerik:RadDockingCommands.Floating" Width="50" Height="20" ToolTipService.ToolTip="Pop-out" > <StackPanel Orientation="Horizontal" > <TextBlock Foreground="{StaticResource TextColor}"> Pop-out </TextBlock> <Image Source="Icons/popout.png" Height="15"/> </StackPanel> </telerik:RadButton> <telerik:RadButton Width="20" Height="50"> <StackPanel Orientation="Horizontal"> <TextBlock Margin="11">Button</TextBlock> <Image Source="Icons/strawberry.png" Height="20"></Image> </StackPanel> </telerik:RadButton> </StackPanel> </Grid> </DataTemplate>
