C# 클래스 System.Windows.Forms.NativeForm

Represents a window or dialog box that that can natively enable or disable itself.
상속: Form
파일 보기 프로젝트 열기: BF2Statistics/ControlCenter

보호된 메소드들

메소드 설명
SetNativeEnabled ( bool enabled ) : void

Natively disables the current form window. Using this method disables / Enables the current form without disabling the underlying controls, thus preventing the form's controls from going grey.

By disabling this form natively, using Form.Show(this) on a new form allows it to display just like a dialog modal (Ex: Form.ShowDialog(this)), but without blocking the thread

비공개 메소드들

메소드 설명
GetWindowLong ( IntPtr hWnd, int nIndex ) : int
SetWindowLong ( IntPtr hWnd, int nIndex, int dwNewLong ) : int

메소드 상세

SetNativeEnabled() 보호된 메소드

Natively disables the current form window. Using this method disables / Enables the current form without disabling the underlying controls, thus preventing the form's controls from going grey.
By disabling this form natively, using Form.Show(this) on a new form allows it to display just like a dialog modal (Ex: Form.ShowDialog(this)), but without blocking the thread
protected SetNativeEnabled ( bool enabled ) : void
enabled bool Indicates whether this form is Enabled (true) or Disabled (false)
리턴 void