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

            if (gotFocusEvent != null)
            {
                gotFocusEvent(this, args);
            }
        }
コード例 #2
0
ファイル: WpfElementHost.cs プロジェクト: jetlive/skiaming
 protected virtual void OnGotFocus(GotFocusEventArgs args)
 {
     EventHandler<GotFocusEventArgs> gotFocusEvent = GotFocus;
     if (gotFocusEvent != null)
         gotFocusEvent(this, args);
 }