I am trying to make the maptip's text it displays be dynamically created. What I mean by this specifically is hoe do I make it so that I can choose at runtime what properties from the specific graphic will be displayed.I'm able to hardcode which fields will be displayed via XAML (e.g. MAINWORKCENTERDESCR & NOTIFICATIONPRIORITY): <esri:SimpleMarkerSymbol x:Key="BlueMarkerSymbol" Color="Blue" Size="10" Style="Circle"> <esri:SimpleMarkerSymbol.ControlTemplate> <ControlTemplate> <Grid> <Ellipse Fill="{Binding Symbol.Color}" Width="{Binding Symbol.Size}" Height="{Binding Symbol.Size}" Stroke="Black" StrokeThickness="0.3" /> <StackPanel Margin="5"> <TextBlock Text="{Binding [MAINWORKCENTERDESCR]}" FontWeight="Bold" /> <StackPanel Orientation="Horizontal"> <TextBlock Text="Priority: " /> <TextBlock Text="{Binding [NOTIFICATIONPRIORITY]}" /> </StackPanel> </StackPanel> <Border BorderBrush="Black" BorderThickness="1" CornerRadius="2" /> </Grid> </ControlTemplate> </esri:SimpleMarkerSymbol.ControlTemplate> </esri:SimpleMarkerSymbol>How can I accomplish this in code behind, so that I can set the fields I would like displayed?