or
<telerik:RadListBox ItemContainerStyle="{StaticResource DraggableListBoxItem}" ItemsSource="{Binding Customers1}" SelectedItem="{Binding SelectedCustomer1, Mode=TwoWay}"private Customer selectedCustomer1; public Customer SelectedCustomer1 { get { return selectedCustomer1; } set { selectedCustomer1 = value; this.OnPropertyChanged(() => this.SelectedCustomer1); } }<ControlTemplate x:Key="AboutImage"> <Viewbox Stretch="Uniform"> <Canvas Width="512" Height="512"> <Rectangle Canvas.Left="0" Canvas.Top="0" Width="512" Height="512" Fill="{TemplateBinding Background}"/> <Path Data="..." Fill="{TemplateBinding Foreground}"/> </Canvas> </Viewbox></ControlTemplate><telerik:Tile TileType="Single" Width="Auto" Background="#FF559B55" Name="tile1"
FontWeight="Bold" FontFamily="Verdana">
<Button Content = {Binding Path=MyRVal} Click="btClick" Foreground="Black">
</Button>
</telerik:Tile>
This works fine in Silverlight project, but the button does not show in WPF. I noticed this only happens when there is Binding instead of static, does WPF not handle this?