// selecionar nivel estrutural
 protected override void beforeNewSelection_Action(ControloNivelListEstrutural.BeforeNewSelectionEventArgs e)
 {
     if (e.node == null)
     {
         GISADataset.NivelRow nRow = null;
         UpdateContext(nRow);
     }
     else
         UpdateContext(e.node.NivelRow);
 }
Example #2
0
		protected override void beforeNewSelection_Action(ControloNivelListEstrutural.BeforeNewSelectionEventArgs e)
		{
			if (e.node == null)
			{
				GISADataset.NivelRow nRow = null;
				UpdateContext(nRow);
			}
			else
				UpdateContext(e.node.NivelRow);

			if (e.selectionChange && ((frmMain)TopLevelControl).MasterPanel is MasterPanelSeries)
				updateContextStatusBar(e.node);
		}