示例#1
0
        protected virtual void OnGotFocus(GotFocusEventArgs args)
        {
            EventHandler <GotFocusEventArgs> gotFocusEvent = GotFocus;

            if (gotFocusEvent != null)
            {
                gotFocusEvent(this, args);
            }
        }
示例#2
0
 protected virtual void OnGotFocus(GotFocusEventArgs args)
 {
     EventHandler<GotFocusEventArgs> gotFocusEvent = GotFocus;
     if (gotFocusEvent != null)
         gotFocusEvent(this, args);
 }