C# Class Spinnaker.Sample.WinForms.ViewModels.SplashViewModel

This is the root view model of the sample application. Notice that it contains several child view models of its own, all of which can be bound to in the GUI. This view model primarily manages the navigation of the sample application, exposing the concept of a "current page" that the user is on and reacting to user requests to change the current page. This concept of "pages" within the sample application is not something inherent to Spinnaker - it is simply one optional way of binding things within a GUI. Actual navigation within the GUI is accomplished by binding the visibility of sections of the GUI to this view model's "CurrentPage" property.
Inheritance: INotifyPropertyChanged
Exibir arquivo Open project: Claytonious/spinnaker Class Usage Examples

Public Methods

Method Description
GotoDataPage ( ) : void
GotoRealtimePage ( ) : void
GotoSimpleFormPage ( ) : void
GotoSplashPage ( ) : void
SplashViewModel ( ) : System

Method Details

GotoDataPage() public method

public GotoDataPage ( ) : void
return void

GotoRealtimePage() public method

public GotoRealtimePage ( ) : void
return void

GotoSimpleFormPage() public method

public GotoSimpleFormPage ( ) : void
return void

GotoSplashPage() public method

public GotoSplashPage ( ) : void
return void

SplashViewModel() public method

public SplashViewModel ( ) : System
return System