Exemplo n.º 1
0
        public hakkinda()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
Exemplo n.º 2
0
        public PivotPage()
        {
            Current = this;
            this.InitializeComponent();

            this.NavigationCacheMode = NavigationCacheMode.Required;

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            questions = new List<Question>();
            //answeredQuestions = new List<KeyValuePair<Question, string>>();
            answeredQuestions = new ListView();
            answeredQuestions.MaxHeight = questionsGrid.Height - 20;
            fututreConclusionsListView = new ListView();
            fututreConclusionsListView.MaxHeight = questionsGrid.Height - 20;
            futureConclusions = new List<Question>();
            answeredQuestionsIdList = new List<int>();
        }
Exemplo n.º 3
0
 public SectionPage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }