Example #1
0
 public static void Run(FleuxPage mainPage)
 {
     Application.Run(mainPage.TheForm);
 }
Example #2
0
 public static void Run(FleuxPage mainPage)
 {
     Application.Run(mainPage.TheForm);
 }
Example #3
0
 protected virtual void NavigateTo(FleuxPage page)
 {
     page.theForm.Owner = this.theForm;
     page.theForm.Show();
 }
Example #4
0
 protected override void NavigateTo(FleuxPage page)
 {
     this.needsEntranceAnimation = true;
     this.panorama.SetAnimations();
     base.NavigateTo(page);
 }
Example #5
0
 private bool NavigateToHandler(FleuxPage page)
 {
     this.NavigateTo(page);
     return true;
 }
Example #6
0
 /// <summary>
 /// Shows user page with entrance animation
 /// </summary>
 /// <param name="page"></param>
 private void OnShowPage(FleuxPage page)
 {
     NavigateTo(page);
 }
 public NavigateRequestEventArgs(FleuxPage destinationPage)
 {
     DestinationPage = destinationPage;
 }
Example #8
0
 protected virtual void NavigateTo(FleuxPage page)
 {
     page.theForm.Owner = this.theForm;
     page.theForm.Show();
 }