This question is locked. New answers and comments are not allowed.
                        
                        Hi i have this xaml in my app
and i want to change image source of foodImage, but it won't allow me to do that in c#.. any idea why?
                                <telerikPrimitives:RadCustomHubTile x:Name="food"                                                                  Tap="food_Tap"                    Width="100"                    Height="100"                    telerikCore:InteractionEffectManager.IsInteractionEnabled="True">    <telerikPrimitives:RadCustomHubTile.FrontContentTemplate>        <DataTemplate>            <Grid>                <Grid.Background>                    <SolidColorBrush Color="{StaticResource PhoneAccentColor}"/>                </Grid.Background>                <Image x:Name="foodImage" Source="/Assets/Icons/food.png" />            </Grid>        </DataTemplate>    </telerikPrimitives:RadCustomHubTile.FrontContentTemplate></telerikPrimitives:RadCustomHubTile>