예제 #1
0
        /// <summary>
        /// Default constructor - consume the passed in CIMView. Call the
        /// base constructor to wire up the CIMView
        /// </summary>
        /// <param name="view"></param>
        public LayersPaneViewModel(CIMView view)
            : base(view)
        {
            _path = view.ViewXML;

            //register
            LayersPaneUtils.PaneCreated(this);

            //get the active map
            MapView activeView = ForTheUcModule.ActiveMapView;

            //get all the layers in the active map
            _allMapLayers = activeView.Map.GetFlattenedLayers().OfType <FeatureLayer>().ToList();
            //set the selected layer to be the first one from the list
            if (_allMapLayers.Count > 0)
            {
                _selectedLayer = _allMapLayers[0];
            }
            ListOfRows = new List <DynamicDataRow>();
            //Enable collection mods in the background
            BindingOperations.EnableCollectionSynchronization(ListOfRows, _theLock);
            //set up the command for the query
            QueryRowsCommand = new RelayCommand(new Action <object>(async(qry) => await QueryRows(qry)), CanQueryRows);
        }
예제 #2
0
 protected override void OnClick()
 {
     LayersPaneUtils.OpenPaneView(LayersPaneViewModel.ViewPaneID);
 }