aHi,

Never used extended ascii ,need to draw a rectangle in a console app with a number inside Do you know of any link or know how to draw rectangles etc.. in c# using extended ascii?

This is for a demo. Thanks

link|improve this question

possible duplicate of Console.Write() - display extended ascii chars? – Josh Lee May 15 '11 at 5:41
C# doesn't use ASCII, extended or otherwise. – David Heffernan May 15 '11 at 8:08
feedback

2 Answers

up vote 1 down vote accepted
public class ConsoleRectangle
{
    private int hWidth;
    private int hHieght;
    private Point hLocation;
    private ConsoleColor hBorderColor;

    public ConsoleRectangle(int width, int hieght, Point location, ConsoleColor borderColor)
    {
        hWidth = width;
        hHieght = hieght;
        hLocation = location;
        hBorderColor = borderColor;
    }

    public Point Location
    {
        get { return hLocation; }
        set { hLocation = value; }
    }

    public int Width
    {
        get { return hWidth; }
        set { hWidth = value; }
    }

    public int Hieght
    {
        get { return hHieght; }
        set { hHieght = value; }
    }

    public ConsoleColor BorderColor
    {
        get { return hBorderColor; }
        set { hBorderColor = value; }
    }

    public void Darw()
    {
        string s = "╔";
        string space = "";
        string temp = "";
        for (int i = 0; i < Width; i++)
        {
            space += " ";
            s += "═";
        }

        for (int j = 0; j < Location.X ; j++)
            temp += " ";

        s += "╗" + "\n";

        for (int i = 0; i < Hieght; i++)
            s += temp + "║" + space + "║" + "\n";

        s += temp + "╚";
        for (int i = 0; i < Width; i++)
            s += "═";

        s += "╝" + "\n";

        Console.ForegroundColor = BorderColor;
        Console.CursorTop = hLocation.Y;
        Console.CursorLeft = hLocation.X;
        Console.Write(s);
        Console.ResetColor();
    }
}
link|improve this answer
How do you use it,if i need to draw number inside the rectangle – user712923 May 15 '11 at 11:41
feedback

Like this?

This worked for me:

Console.OutputEncoding = Encoding.GetEncoding(866);
Console.WriteLine("┌─┐");
Console.WriteLine("│1│");
Console.WriteLine("└─┘");

[EDIT]

Answer to the sub-question in the comment:

Console.OutputEncoding = Encoding.GetEncoding(866);
Console.WriteLine("  ┌─┐");
Console.WriteLine("  │1│");
Console.WriteLine("┌─┼─┘");
Console.WriteLine("│1│");
Console.WriteLine("└─┘");
link|improve this answer
@Alex thanks for your example.That will definetely do the trick.Correct if I am wrong but what you did is not using ascii is it?Also what does "Encoding.GetEncoding(866) does? – user712923 May 15 '11 at 5:44
I used ASCII symbols from code page 866. ascii.ca/cp866.htm – Alex Aza May 15 '11 at 5:49
@Alex how did you draw the top of the rectangle? – user712923 May 15 '11 at 5:50
@user712923 - Hold Alt key and type 218 on numeric keyboard. This will show ┌. Than you do the same with 196 and 191. Important - you need to use numeric keyboard (NumLock is On). – Alex Aza May 15 '11 at 6:46
@Alex you have been very very helful .Can i ask you one last thing.Sorry.I have done the rectangle ,I need to draw another rectangle at the top right hand corner with a numnber inside.Any chance of help?thanks – user712923 May 15 '11 at 7:37
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.