async void NormalLoads_click(object sender, RoutedEventArgs e)
        {
            DismissTestViewAsNormal();

            var contentDialog = new LoadSpecDialog();

            await contentDialog.ShowAsync();

            // Load the app data for the setting LoginUserId

            //Windows.Storage.ApplicationDataContainer localSettings =
            //Windows.Storage.ApplicationData.Current.LocalSettings;

            //Object value = localSettings.Values["LoginUserId"];
        }
        async void LoadDialog()
        {

            var contentDialog = new LoadSpecDialog();
            contentDialog.HorizontalAlignment = HorizontalAlignment.Right;
            contentDialog.HorizontalContentAlignment = HorizontalAlignment.Right;
            await contentDialog.ShowAsync();
        }