Ejemplo n.º 1
0
        public TablePage(IAppContext context, ITableEditorView view, IFeatureLayer featureLayer)
        {
            InitializeComponent();
            _context      = context;
            _view         = view;
            _featureLayer = featureLayer;

            this.Name = featureLayer.Name;
            this.Text = featureLayer.Name;
            InitControls();

            _activeViewEventsEvent = context.MapControl.Map as IActiveViewEvents_Event;
            if (_activeViewEventsEvent != null)
            {
                _activeViewEventsEvent.SelectionChanged += _activeViewEventsEvent_SelectionChanged;
                _activeViewEventsEvent.ItemDeleted      += _activeViewEventsEvent_ItemDeleted;
            }
        }
Ejemplo n.º 2
0
 public CmdShowAllFields(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 3
0
 public CmdAddField(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 4
0
 public CmdExportSelection(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 5
0
 public CmdJoinDatasource(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 6
0
 public CmdZoomToSelectedFeatures(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 7
0
 public CmdBuildQuery(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 8
0
 public CmdClearSorting(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 9
0
 public CmdSelectAll(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 10
0
 public CmdAttributeExplorer(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 11
0
 public CmdReloadTable(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }
Ejemplo n.º 12
0
 public CmdZoomToCurrentFeature(IAppContext context, ITableEditorView view)
 {
     _context = context;
     _view    = view;
     OnCreate();
 }