WelcomeView.xaml.cs 900 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Documents;
  8. using System.Windows.Input;
  9. using System.Windows.Media;
  10. using System.Windows.Media.Animation;
  11. using System.Windows.Shapes;
  12. using VocabManager.ViewModel;
  13. using Microsoft.Phone.Shell;
  14. namespace VocabManager.View
  15. {
  16. public partial class WelcomeView : UserControlBase
  17. {
  18. public WelcomeView()
  19. {
  20. InitializeComponent();
  21. }
  22. protected override void OnLoad()
  23. {
  24. base.OnLoad();
  25. ContainerPage.ApplicationBar.IsVisible = false;
  26. }
  27. protected override void OnUnload()
  28. {
  29. base.OnUnload();
  30. ContainerPage.ApplicationBar.IsVisible = true;
  31. }
  32. }
  33. }