Be.Windows.Forms.HexBox.OnGotFocus C# (CSharp) 메소드

OnGotFocus() 보호된 메소드

Raises the GotFocus event.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
리턴 void
        protected override void OnGotFocus(EventArgs e)
        {
            //System.Diagnostics.Debug.WriteLine("OnGotFocus()", "HexBox");

            base.OnGotFocus(e);

            CreateCaret();
        }
HexBox