C# 클래스 Eto.Forms.Window

Base window
상속: Eto.Forms.Panel
파일 보기 프로젝트 열기: picoe/Eto 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Window System

공개 메소드들

메소드 설명
BringToFront ( ) : void

Brings the window in front of all other windows in the z-order.

Close ( ) : void

Closes the window

Note that once a window is closed, it cannot be shown again in most platforms.

Maximize ( ) : void

Sets WindowState to Eto.Forms.WindowState.Maximized

Minimize ( ) : void

Sets WindowState to Eto.Forms.WindowState.Minimized

SendToBack ( ) : void

Sends the window behind all other windows in the z-order.

보호된 메소드들

메소드 설명
GetCallback ( ) : object

Gets an instance of an object used to perform callbacks to the widget from handler implementations

OnClosed ( EventArgs e ) : void

Raises the Closed event.

OnClosing ( CancelEventArgs e ) : void

Raises the Closing event.

OnDataContextChanged ( EventArgs e ) : void

Raises the BindableWidget.DataContextChanged event

Implementors may override this to fire this event on child widgets in a heirarchy. This allows a control to be bound to its own BindableWidget.DataContext, which would be set on one of the parent control(s).

OnLocationChanged ( EventArgs e ) : void

Raises the LocationChanged event.

OnLogicalPixelSizeChanged ( EventArgs e ) : void

Raises the LogicalPixelSizeChanged event.

OnOwnerChanged ( EventArgs e ) : void

Raises the OwnerChanged event.

OnWindowStateChanged ( EventArgs e ) : void

Raises the WindowStateChanged event.

Window ( IHandler handler ) : System

Initializes a new instance of the Window with the specified handler

비공개 메소드들

메소드 설명
Window ( ) : System

메소드 상세

BringToFront() 공개 메소드

Brings the window in front of all other windows in the z-order.
public BringToFront ( ) : void
리턴 void

Close() 공개 메소드

Closes the window
Note that once a window is closed, it cannot be shown again in most platforms.
public Close ( ) : void
리턴 void

GetCallback() 보호된 메소드

Gets an instance of an object used to perform callbacks to the widget from handler implementations
protected GetCallback ( ) : object
리턴 object

Maximize() 공개 메소드

Sets WindowState to Eto.Forms.WindowState.Maximized
public Maximize ( ) : void
리턴 void

Minimize() 공개 메소드

Sets WindowState to Eto.Forms.WindowState.Minimized
public Minimize ( ) : void
리턴 void

OnClosed() 보호된 메소드

Raises the Closed event.
protected OnClosed ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

OnClosing() 보호된 메소드

Raises the Closing event.
protected OnClosing ( CancelEventArgs e ) : void
e CancelEventArgs Event arguments
리턴 void

OnDataContextChanged() 보호된 메소드

Raises the BindableWidget.DataContextChanged event
Implementors may override this to fire this event on child widgets in a heirarchy. This allows a control to be bound to its own BindableWidget.DataContext, which would be set on one of the parent control(s).
protected OnDataContextChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

OnLocationChanged() 보호된 메소드

Raises the LocationChanged event.
protected OnLocationChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

OnLogicalPixelSizeChanged() 보호된 메소드

Raises the LogicalPixelSizeChanged event.
protected OnLogicalPixelSizeChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

OnOwnerChanged() 보호된 메소드

Raises the OwnerChanged event.
protected OnOwnerChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

OnWindowStateChanged() 보호된 메소드

Raises the WindowStateChanged event.
protected OnWindowStateChanged ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 void

SendToBack() 공개 메소드

Sends the window behind all other windows in the z-order.
public SendToBack ( ) : void
리턴 void

Window() 보호된 메소드

Initializes a new instance of the Window with the specified handler
protected Window ( IHandler handler ) : System
handler IHandler Pre-created handler to attach to this instance
리턴 System