I can add Radion buttons....and have an ONCLCK event (I Have this working and it calls the vb and turns on the imagery)....BUT I CANNOT get a click event to work on the TEXTBLOCK in the combobox.....so nothing happens when I click the text in the dropdown....The button below obviosly dosent work....What else can I use instead of the combobox? I want an image there...What I am after:Have an image in the toolbarHover over it and have it expand to show choicesclick a choice (tool, turn on layer etc)When I move off the button or expanded selection list it closes automatically....
<esriToolkit:ToolbarItem Text="TESTING">
<esriToolkit:ToolbarItem.Content>
<ComboBox HorizontalAlignment="Center" Width="35" Margin="2">
<ComboBox.Items>
<TextBlock x:Name="ZoomIn" Text="ZoomIn" HorizontalAlignment="Center"/>
<TextBlock x:Name="ZoomOut" Text="ZoomOut" HorizontalAlignment="Center"/>
<Button x:Name="Button" Tag="4" Click="RadioButton_Click" Background="Azure"/>
<RadioButton x:Name="StreetsRadioButton0" Tag="0" IsChecked="False" Margin="5,0,0,0" Foreground="Black" GroupName="Layers" Content="Streets" Click="RadioButton_Click"/>
</ComboBox.Items>
</ComboBox>
</esriToolkit:ToolbarItem.Content>
</esriToolkit:ToolbarItem>