public UISingleExperience(WPos pos)
        {
            InitializeComponent();

            this.pos = pos;
            txtJob.Text = pos.title;
            txtArea.Text = pos.name;
            txtCompany.Text = pos.industry;
        }
        internal void Update(WPos[] experiences)
        {
            stkExperience.Children.Clear();

            foreach (WPos item in experiences)
            {
                stkExperience.Children.Add(new UISingleExperience(item));
            }
        }
 private void UpdateExperiences(WPos[] positions)
 {
     uiexperiences.Update(positions);
 }