C# 클래스 P02Project.TopWindow

Interaction logic for TopWindow.xaml
상속: SurfaceWindow
파일 보기 프로젝트 열기: raouldc/OptiDev 1 사용 예제들

공개 메소드들

메소드 설명
ResetTimer ( ) : void

Helper method to reset the timer

StartTimer ( ) : void

Helper method to start the timer

StopTimer ( ) : void

Helper method to stop the timer

TopWindow ( ) : System

Default constructor.

popAll ( ) : void

pop all the screen on the stack => show the Home Screen

popScreen ( ) : void

pop a screen

pushScreen ( Screen screen ) : void

push the given screen into the stack

pushScreenOnStack ( TopLevelPage nextScreen, String buttons, Color colour, System.Windows.Controls.UserControl content, String Subtitle ) : void

push the given screen into the screen stack

보호된 메소드들

메소드 설명
OnClosed ( EventArgs e ) : void

Occurs when the window is about to close.

비공개 메소드들

메소드 설명
AddWindowAvailabilityHandlers ( ) : void

Adds handlers for window availability events.

OnWindowInteractive ( object sender, EventArgs e ) : void

This is called when the user can interact with the application's window.

OnWindowNoninteractive ( object sender, EventArgs e ) : void

This is called when the user can see but not interact with the application's window.

OnWindowUnavailable ( object sender, EventArgs e ) : void

This is called when the application's window is not visible or interactive.

RemoveWindowAvailabilityHandlers ( ) : void

Removes handlers for window availability events.

inavtiveTimer_Tick ( object sender, EventArgs e ) : void

메소드 상세

OnClosed() 보호된 메소드

Occurs when the window is about to close.
protected OnClosed ( EventArgs e ) : void
e System.EventArgs
리턴 void

ResetTimer() 공개 메소드

Helper method to reset the timer
public ResetTimer ( ) : void
리턴 void

StartTimer() 공개 메소드

Helper method to start the timer
public StartTimer ( ) : void
리턴 void

StopTimer() 공개 메소드

Helper method to stop the timer
public StopTimer ( ) : void
리턴 void

TopWindow() 공개 메소드

Default constructor.
public TopWindow ( ) : System
리턴 System

popAll() 공개 메소드

pop all the screen on the stack => show the Home Screen
public popAll ( ) : void
리턴 void

popScreen() 공개 메소드

pop a screen
public popScreen ( ) : void
리턴 void

pushScreen() 공개 메소드

push the given screen into the stack
public pushScreen ( Screen screen ) : void
screen Screen
리턴 void

pushScreenOnStack() 공개 메소드

push the given screen into the screen stack
public pushScreenOnStack ( TopLevelPage nextScreen, String buttons, Color colour, System.Windows.Controls.UserControl content, String Subtitle ) : void
nextScreen P02Project.Screens.TopLevelPage
buttons String
colour Color
content System.Windows.Controls.UserControl
Subtitle String
리턴 void