private void ShowNewQuestion()
        {
            Question q = WordProvider.GetQuestion();


            mtQuestion.Text = q.EnWord.engWord.ToUpper();
            mtQuestion.Tag  = q;


            mtAnswer1.Text = q.TrAnswer1.trWord.ToUpper();
            mtAnswer1.Tag  = q.TrAnswer1;

            mtAnswer2.Text = q.TrAnswer2.trWord.ToUpper();
            mtAnswer2.Tag  = q.TrAnswer2;

            mtAnswer3.Text = q.TrAnswer3.trWord.ToUpper();
            mtAnswer3.Tag  = q.TrAnswer3;

            if (SaveControlBounds.Count > 0)
            {
                mtAnswer1.Bounds = SaveControlBounds[0];
                mtAnswer2.Bounds = SaveControlBounds[1];
                mtAnswer3.Bounds = SaveControlBounds[2];
            }
        }