Inheritance: Windows.UI.Xaml.DependencyObject
 public ViewProjectDetails()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
 }
        public ProjectListPage()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public ListOfUserStories()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public ListOfDevelopersInProject()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public CreateTaskPage()
        {
            this.InitializeComponent();
            var cmbtype = new UserStoryViewModel();
            comboBoxUserstory.ItemsSource = cmbtype.UserStorys;

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public CreateProjectPage()
        {
            this.InitializeComponent();
            var cmbtype = new ProjectTypeViewModel();
            cmb_prjtype.ItemsSource = cmbtype.ProjectTypes;

            var cmbbu = new BusinessUnitViewModel();
            cmb_bu.ItemsSource = cmbbu.BusinessUnits;

            var cmbcust= new CustomerViewModel();
            cmb_customer.ItemsSource = cmbcust.Customers;

            if (cmb_status.Items != null)
            {
                cmb_status.Items.Add(new ComboBoxItem() {Content = "Estimating", IsSelected = true});
                cmb_status.Items.Add(new ComboBoxItem() {Content = "In Progress"});
                cmb_status.Items.Add(new ComboBoxItem() {Content = "Completed"});
                cmb_status.Items.Add(new ComboBoxItem() {Content = "Halted"});
                cmb_status.Items.Add(new ComboBoxItem() {Content = "Cancelled"});

            }

            if (cmb_usecost.Items != null)
            {
                cmb_usecost.Items.Add(new ComboBoxItem() { Content = "Internal",IsSelected = true});
                cmb_usecost.Items.Add(new ComboBoxItem() { Content = "External" });

            }

            if (cmb_useala.Items != null)
            {
                cmb_useala.Items.Add(new ComboBoxItem() { Content = "True ",IsSelected = true});
                cmb_useala.Items.Add(new ComboBoxItem() { Content = "False" });

            }

            //dummy data for user

            if (cmb_owner.Items != null)
            {
                cmb_owner.Items.Add(new ComboBoxItem() { Content = 637 });
                cmb_owner.Items.Add(new ComboBoxItem() { Content = 617 });

            }

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public CreateUserStoryPage()
        {
            this.InitializeComponent();

            var cmbtype = new UserStoryTypeViewModel();
            cmb_type.ItemsSource = cmbtype.UserStoryTypes;

            var cmbsprint = new SprintViewModel();
            cmb_sprint.ItemsSource = cmbsprint.Sprints;

            var cmbstatus = new ScrumStageViewModel();
            cmb_status.ItemsSource = cmbstatus.ScrumStages;

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