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
Show 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|
--------------------------------------