Left Mouse Click + Ctrl key event

292
2
03-07-2012 04:35 AM
LuisGarcia2
Occasional Contributor II
I need to handle an event for this combination of mouse left button  click + Ctrl key. Is it possible? I did not see it for the GraphicsLayer. I also have a ArcGISTiledMapServiceLayer in my control. I did not see anything for either in the documentation but I may be wrong.
thanks
0 Kudos
2 Replies
OrlandoCarvajal
New Contributor III
Use:
        void featureLayer_MouseLeftButtonDown(object sender, GraphicMouseButtonEventArgs e)
        {
            if (Keyboard.Modifiers == ModifierKeys.Control)
            {
                ....
0 Kudos
LuisGarcia2
Occasional Contributor II
Excellent! Thanks!!
0 Kudos