Exemplo n.º 1
0
        protected virtual void OnTraversing(PropertyGridTraversingEventArgs e)
        {
            PropertyGridTraversingEventHandler handler = this.Traversing;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
        protected virtual void OnTraversing(PropertyGridTraversingEventArgs e)
        {
            PropertyGridTraversingEventHandler traversing = this.Traversing;

            if (traversing == null)
            {
                return;
            }
            traversing((object)this, e);
        }