private void CreateMiddleText()
        {
            this.textFragmentStrategy = new LCDDigitMiddleTopText(this.lcdDigit, this.width);
            for (int i = 1; i < this.height; i++)
            {
                this.textList.Add(this.textFragmentStrategy.Create());
            }

            this.textFragmentStrategy = new LCDDigitMiddleCenterText(this.lcdDigit, this.width);
            this.textList.Add(this.textFragmentStrategy.Create());

            this.textFragmentStrategy = new LCDDigitMiddleBottomText(this.lcdDigit, this.width);
            for (int j = 1; j < this.height; j++)
            {
                this.textList.Add(this.textFragmentStrategy.Create());
            }
        }
 private void CreateLowerText()
 {
     this.textFragmentStrategy = new LCDDigitLowerText(this.lcdDigit, this.width);
     this.textList.Add(this.textFragmentStrategy.Create());
 }