Creating Text Display Classes: ScreenText, CenteredText, and FramedText in C#

In this exercise, we will create three classes to manage displaying text at specific positions on the screen. The main class ScreenText will display text at given X and Y coordinates. It will include a constructor to set these coordinates and the text to be displayed, along with setter methods to change the text or coordinates, and a Display method to output the text at the specified position.

The second class, CenteredText, will inherit from ScreenText and will display text horizontally centered in a specified row (Y coordinate). It will automatically adjust the X coordinate to center the text within the row.

The third class, FramedText, will also inherit from ScreenText and will display text horizontally centered inside a rectangle. The rectangle's borders will be represented by characters, and the text will be placed in the middle of the rectangle, which will be defined by a starting row and the provided text.

In the test program, we will create an instance of each class and display their contents to verify the functionality of each.



Group

Advanced Classes in C#

Objective

1. Create the ScreenText class with methods to set X, Y coordinates and the text to display. Implement a Display method to show the text at the given coordinates.
2. Create the CenteredText class that inherits from ScreenText, modifies the X coordinate to center the text in the specified row, and ensures the text is displayed properly.
3. Implement the FramedText class, which will create a rectangle around the text and display it centered within that rectangle.
4. In the Main method, test all three classes by creating objects of each and calling their Display methods to show the output.

Create a class ScreenText, to display a certain text in specified screen coordinates. It must have a constructor which will receive X, Y and the string to write. It must also have 3 setters and a "Display" method.
Create a class CenteredText, based on ScreenText, to display text centered (horizontally) in a certain row of the screen. Its constructor will receive only Y and the text. SetX should not change the horizontal position.
Create a class FramedText, to display text centered and inside a rectangle. It will receive the starting row and the text.
Finally, create a test program for all of them, which will create an object of each type and display them.

Example C# Exercise

 Copy C# Code
using System;

class ScreenText
{
    // X and Y coordinates and the text to display
    private int x;
    private int y;
    private string text;

    // Constructor to initialize coordinates and text
    public ScreenText(int x, int y, string text)
    {
        this.x = x;
        this.y = y;
        this.text = text;
    }

    // Setters for X, Y, and text
    public void SetX(int x)
    {
        this.x = x;
    }

    public void SetY(int y)
    {
        this.y = y;
    }

    public void SetText(string text)
    {
        this.text = text;
    }

    // Method to display the text at the specified coordinates
    public void Display()
    {
        Console.SetCursorPosition(x, y); // Set the cursor position
        Console.WriteLine(text); // Display the text at that position
    }
}

class CenteredText : ScreenText
{
    // Constructor to set the Y coordinate and the text, centering it horizontally
    public CenteredText(int y, string text) : base(0, y, text)
    {
        // Calculate the X coordinate to center the text
        int x = (Console.WindowWidth - text.Length) / 2;
        SetX(x); // Set the calculated X position
    }
}

class FramedText : ScreenText
{
    // Constructor to initialize the starting row and the text
    public FramedText(int y, string text) : base(0, y, text)
    {
    }

    // Method to display the text inside a framed rectangle
    public new void Display()
    {
        string border = new string('-', text.Length + 2);
        
        // Display the top border
        Console.SetCursorPosition(0, y);
        Console.WriteLine(border);

        // Display the text with side borders
        Console.SetCursorPosition(0, y + 1);
        Console.WriteLine("|" + text + "|");

        // Display the bottom border
        Console.SetCursorPosition(0, y + 2);
        Console.WriteLine(border);
    }
}

class Program
{
    static void Main()
    {
        // Create a ScreenText object and display it
        ScreenText screenText = new ScreenText(5, 5, "Hello, Screen!");
        screenText.Display();
        
        // Create a CenteredText object and display it
        CenteredText centeredText = new CenteredText(7, "Centered Text");
        centeredText.Display();
        
        // Create a FramedText object and display it inside a frame
        FramedText framedText = new FramedText(9, "Framed Text");
        framedText.Display();
    }
}

 Output

Hello, Screen!
                                        Centered Text
--------------------------------------
|Framed Text|
--------------------------------------

Share this C# Exercise

More C# Practice Exercises of Advanced Classes in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.