ArcGISWindowsPhoneSDK.OrderByFieldQuery.GraphicsLayer_MouseLeftButtonUp C# (CSharp) Method

GraphicsLayer_MouseLeftButtonUp() private method

private GraphicsLayer_MouseLeftButtonUp ( object sender, GraphicMouseButtonEventArgs e ) : void
sender object
e GraphicMouseButtonEventArgs
return void
        private void GraphicsLayer_MouseLeftButtonUp(object sender, GraphicMouseButtonEventArgs e)
        {
            (sender as GraphicsLayer).ClearSelection();
            e.Graphic.Select();

            // select the corresponding item in the ListBox
            FeatureListBox.SelectedItem = e.Graphic;
        }