Ushahidi.Common.Controls.KeyboardEventArgs.KeyboardEventArgs C# (CSharp) 메소드

KeyboardEventArgs() 공개 메소드

public KeyboardEventArgs ( bool visible, int height, Control control ) : System
visible bool
height int
control System.Windows.Forms.Control
리턴 System
        public KeyboardEventArgs(bool visible, int height, Control control)
        {
            Visible = visible;
            Height = height;
            Control = control;
        }
KeyboardEventArgs