Hello! I want to put some text into the stencil symbols. Something like this (TextBlock):
<DataTemplate x:Key="StoredData"> <Border Name="border" BorderBrush="Aqua" BorderThickness="1" Padding="5" Margin="5"> <Viewbox Stretch="Fill"> <Grid> <TextBlock Text="{Binding Whatever}"><!--Here--> </Grid> </Viewbox> </Border> </DataTemplate> |
But I want to change this text according to different SymbolItems. How can I bind it to my SymbolItem?
Thanks.