I have a MapTip that is returning a value from a field....I need this value to be pushed to the VB code so I can do soemthing with it...Can that be done...Say inthe Map Tip below I have this....when I click the Button it sends a Binding Value from a field to the VB Sub....This is the field that I need the bound field value "{Binding [Field1]}" sent to the vb Sub "doThis" as seen below...From a MapTip can I send a Binding Value to a VB sub ????THanks
<!-- Snip inside MapTip of Feature -->
<StackPanel Orientation="Vertical">
<Button x:Name="button" Background="Green" Width="40" Height="20" Content="button" Click="doThis" SEND TO VB SUB="{Binding[Field1]}" />
</StackPanel>
<!-- Snip -->