Inheritance: System.EventArgs
Ejemplo n.º 1
0
		public void OnElementSelectionChanged(ElementNodesEventArgs e)
		{
			if (ElementSelectionChanged == null)
				return;

			ElementSelectionChanged(this, e);
		}
Ejemplo n.º 2
0
        public void OnElementSelectionChanged(ElementNodesEventArgs e)
        {
            if (ElementSelectionChanged == null)
            {
                return;
            }

            ElementSelectionChanged(this, e);
        }
Ejemplo n.º 3
0
		void control_ElementSelectionChanged(object sender, ElementNodesEventArgs e)
		{
			if (_currentPatchingControl != null) {
				_currentPatchingControl.UpdateElementSelection(e.ElementNodes);
			}
		}