ArcGISWindowsPhoneSDK.DynamicLayerThematic.PropertyButton_Click C# (CSharp) Метод

PropertyButton_Click() приватный Метод

private PropertyButton_Click ( object sender, System e ) : void
sender object
e System
Результат void
        private void PropertyButton_Click(object sender, System.Windows.RoutedEventArgs e)
        {
            switch (((Button)sender).Tag.ToString())
            {
                case "BaseSymbol":
                    ColorRampChoicesPage.IsOpen = true;
                    break;
                case "StartColor":
                    StartColorChoicesPage.IsOpen = true;
                    break;
                case "EndColor":
                    EndColorChoicesPage.IsOpen = true;
                    break;
                case "Algorithm":
                    AlgorithmChoicesPage.IsOpen = true;
                    break;
                case "ClassificationField":
                    ClassificationFieldChoicesPage.IsOpen = true;
                    break;
                case "ClassificationMethod":
                    ClassificationMethodChoicesPage.IsOpen = true;
                    break;
                case "Interval":
                    IntervalChoicesPage.IsOpen = true;
                    break;
                case "NormalizationType":
                    NormalizationTypeChoicesPage.IsOpen = true;
                    break;
                case "NormalizationField":
                    NormalizationFieldChoicesPage.IsOpen = true;
                    break;
            }
        }