Probably a pretty newbie question, and I couldn't seem to find the answer in the forums here. Bare with me as I'm pretty new to both Silverlight and ArcGIS...
I've got a button that allows to user the select one or more pieces of equipment on the map. My issue is that if the user wants to make additional selections, the Select button has to be pressed before each one. How do I keep the "Select" action active?
The xaml button definition (to keep it simple I omitted the size, margin, etc)...
<Button Name="btnSelectProblem" Command="{Binding Select}" CommandParameter="Add" Click="btnSelectProblem_Click" </Button>
I'm not sure if there is something I should be doing in the xaml code or in the C# code behind (ie, in the btnSelectProblem_Click method.)
Thanks a bunch!