/// <summary>
 /// Initializes a new instance of the <see cref="FavoritesPage"/> class.
 /// </summary>
 public FavoritesPage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.navigationHelper_LoadState;
     this.navigationHelper.SaveState += this.navigationHelper_SaveState;
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="TerminalPage"/> class.
        /// </summary>
        public TerminalPage()
        {
            this.InitializeComponent();
            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.navigationHelper_LoadState;
            this.navigationHelper.SaveState += this.navigationHelper_SaveState;

            InputPane input = InputPane.GetForCurrentView();
            input.Showing += InputPaneShowing;
            input.Hiding += InputPaneHiding;

            this.copyContainer.Visibility = Visibility.Collapsed;
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="PrivateKeysPage"/> class.
 /// </summary>
 public PrivateKeysPage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.navigationHelper_LoadState;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ConnectionDataForm"/> class.
 /// </summary>
 public ConnectionDataForm()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.navigationHelper_LoadState;
 }