12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using VocabManager.ViewModel;
- using Microsoft.Phone.Shell;
- namespace VocabManager.View
- {
- public partial class WelcomeView : UserControlBase
- {
- public WelcomeView()
- {
- InitializeComponent();
-
- }
- protected override void OnLoad()
- {
- base.OnLoad();
- ContainerPage.ApplicationBar.IsVisible = false;
- }
- protected override void OnUnload()
- {
- base.OnUnload();
- ContainerPage.ApplicationBar.IsVisible = true;
- }
- }
- }
|