GetSpatialContextNames() private method

private GetSpatialContextNames ( ) : string[]
return string[]
        public GeometricPropertyCtrl(GeometricPropertyDefinitionDecorator p, SchemaDesignContext context, NodeUpdateHandler updater)
            : this()
        {
            _context = context;

            txtName.DataBindings.Add("Text", p, "Name");
            txtDescription.DataBindings.Add("Text", p, "Description");
            chkElevation.DataBindings.Add("Checked", p, "HasElevation");
            chkMeasure.DataBindings.Add("Checked", p, "HasMeasure");

            cmbSpatialContext.DisplayMember = "Name";
            var scNames = _context.GetSpatialContextNames();

            cmbSpatialContext.DataSource = scNames;
            //Assign current association if defined
            if (!string.IsNullOrEmpty(p.SpatialContextAssociation))
            {
                cmbSpatialContext.SelectedItem = p.SpatialContextAssociation;
            }
            //Setup event handler that will update the model
            EventHandler scChanged = (s, e) =>
            {
                if (cmbSpatialContext.SelectedItem != null)
                {
                    p.SpatialContextAssociation = cmbSpatialContext.SelectedItem.ToString();
                }
            };

            //Wire it up
            cmbSpatialContext.SelectedIndexChanged += scChanged;
            //If spatial contexts available and this property hasn't been assigned one, assign
            //it to the first available spatial context name
            if (string.IsNullOrEmpty(p.SpatialContextAssociation) && scNames.Length > 0)
            {
                cmbSpatialContext.SelectedIndex = 0;
                scChanged(this, EventArgs.Empty);
            }

            chkGeometryTypes.GeometryTypes = p.GeometryTypes;

            //Now wire up change listener
            chkGeometryTypes.ItemCheck += (s, e) =>
            {
                p.GeometryTypes = chkGeometryTypes.GetPostCheckValue(e);
            };

            p.PropertyChanged += (s, evt) =>
            {
                if (evt.PropertyName == "Name")
                {
                    updater();
                }
            };
        }
        public GeometricPropertyCtrl(GeometricPropertyDefinitionDecorator p, SchemaDesignContext context, NodeUpdateHandler updater)
            : this()
        {
            _context = context;

            txtName.DataBindings.Add("Text", p, "Name");
            txtDescription.DataBindings.Add("Text", p, "Description");
            chkElevation.DataBindings.Add("Checked", p, "HasElevation");
            chkMeasure.DataBindings.Add("Checked", p, "HasMeasure");

            cmbSpatialContext.DisplayMember = "Name";
            var scNames = _context.GetSpatialContextNames();
            cmbSpatialContext.DataSource = scNames;
            //Assign current association if defined
            if (!string.IsNullOrEmpty(p.SpatialContextAssociation))
            {
                cmbSpatialContext.SelectedItem = p.SpatialContextAssociation;
            }
            //Setup event handler that will update the model
            EventHandler scChanged = (s, e) =>
            {
                if (cmbSpatialContext.SelectedItem != null)
                    p.SpatialContextAssociation = cmbSpatialContext.SelectedItem.ToString();
            };
            //Wire it up
            cmbSpatialContext.SelectedIndexChanged += scChanged;
            //If spatial contexts available and this property hasn't been assigned one, assign
            //it to the first available spatial context name
            if (string.IsNullOrEmpty(p.SpatialContextAssociation) && scNames.Length > 0)
            {
                cmbSpatialContext.SelectedIndex = 0;
                scChanged(this, EventArgs.Empty);
            }

            chkGeometryTypes.GeometryTypes = p.GeometryTypes;

            //Now wire up change listener
            chkGeometryTypes.ItemCheck += (s, e) =>
            {
                p.GeometryTypes = chkGeometryTypes.GetPostCheckValue(e);
            };

            p.PropertyChanged += (s, evt) =>
            {
                if (evt.PropertyName == "Name")
                    updater();
            };
        }