.net 如何在控制台应用程序中绘制矩形?

a11xaf1n  于 2023-02-20  发布在  .NET
关注(0)|答案(5)|浏览(149)

我需要画一个矩形,里面有一个数字,在一个C#控制台应用程序和使用扩展ASCII。我该怎么做呢?
这是个演示。

c3frrgcw

c3frrgcw1#

public class ConsoleRectangle
{
    private int hWidth;
    private int hHeight;
    private Point hLocation;
    private ConsoleColor hBorderColor;

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

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

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

    public int Height
    {
        get { return hHeight; }
        set { hHeight = value; }
    }

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

    public void Draw()
    {
        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 < Height; 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();
    }
}
ep6jt1vc

ep6jt1vc2#

这是String的一个扩展方法,它将在给定的字符串周围绘制一个控制台框。包括多行支持。
string tmp = "some value"; Console.Write(tmp.DrawInConsoleBox());

public static string DrawInConsoleBox(this string s)
        {
            string ulCorner = "╔";
            string llCorner = "╚";
            string urCorner = "╗";
            string lrCorner = "╝";
            string vertical = "║";
            string horizontal = "═";

            string[] lines = s.Split(new char[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
            

            int longest = 0;
            foreach(string line in lines)
            {
                if (line.Length > longest)
                    longest = line.Length;
            }
            int width = longest + 2; // 1 space on each side

            
            string h = string.Empty;
            for (int i = 0; i < width; i++)
                h += horizontal;

            // box top
            StringBuilder sb = new StringBuilder();
            sb.AppendLine(ulCorner + h + urCorner);

            // box contents
            foreach (string line in lines)
            {
                double dblSpaces = (((double)width - (double)line.Length) / (double)2);
                int iSpaces = Convert.ToInt32(dblSpaces);

                if (dblSpaces > iSpaces) // not an even amount of chars
                {
                    iSpaces += 1; // round up to next whole number
                }

                string beginSpacing = "";
                string endSpacing = "";
                for (int i = 0; i < iSpaces; i++)
                {
                    beginSpacing += " ";

                    if (! (iSpaces > dblSpaces && i == iSpaces - 1)) // if there is an extra space somewhere, it should be in the beginning
                    {
                        endSpacing += " ";
                    }
                }
                // add the text line to the box
                sb.AppendLine(vertical + beginSpacing + line + endSpacing + vertical);
            }

            // box bottom
            sb.AppendLine(llCorner + h + lrCorner);

            // the finished box
            return sb.ToString();
        }

输出如下

k4emjkb1

k4emjkb13#

就像this
这对我很有效:

Console.OutputEncoding = Encoding.GetEncoding(866);
Console.WriteLine("┌─┐");
Console.WriteLine("│1│");
Console.WriteLine("└─┘");
  • [编辑]*

对评论中子问题的回答:

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

vjrehmav4#

您可以使用CsConsoleFormat †在控制台中绘制ASCII边框符号。
在带有"双"线的矩形内绘制数字:

ConsoleRenderer.RenderDocument(
    new Document()
        .AddChildren(
            new Border {
                    Stroke = LineThickness.Wide,
                    Align = HorizontalAlignment.Left
                }
                .AddChildren(1337)
        )
);

您可以更改Stroke = LineThickness.Wide线条以更改线条的样式。LineThickness.Single将生成细单线,new LineThickness(LineWidth.Single, LineWidth.Wide)将生成单竖线和双横线。
它看起来是这样的:

您还可以使用ConsoleBuffer类显式地绘制线条(为清楚起见,添加了参数名称):

using static System.ConsoleColor;

var buffer = new ConsoleBuffer(width: 6);
buffer.DrawHorizontalLine(x: 0, y: 0, width: 6, color: White);
buffer.DrawHorizontalLine(x: 0, y: 2, width: 6, color: White);
buffer.DrawVerticalLine(x: 0, y: 0, height: 3, color: White);
buffer.DrawVerticalLine(x: 5, y: 0, height: 3, color: White);
buffer.DrawString(x: 1, y: 1, color: White, text: "1337");
new ConsoleRenderTarget().Render(buffer);

† CsConsoleFormat是我开发的。

ngynwnxp

ngynwnxp5#

以上代码的问题是多余的空格,如果你画多个矩形,它会造成混乱。这里是一个代码,绘制矩形递归没有多余的空格。

public class AsciDrawing
{
    public static void TestMain() {
        var w = Console.WindowWidth;
        var h = Console.WindowHeight;
        RecursiveDraw(16, 8, new Point(w/2-8, h/2-4), ConsoleColor.Black);
        Console.CursorTop = h;
        Console.CursorLeft = 0;
    }
    public static void RecursiveDraw(int Width, int Height, Point Location, ConsoleColor BorderColor) { 
        if(Width < 4 || Height < 2) return;
        Draw(Width, Height, Location, BorderColor); //Commnet this draw and and Uncomment Draw bellow to see the difference. 
        Thread.Sleep(500);
        //Comment or Uncomment to see how many recursive calls you want to make
        //The best is to comment all execpt 1 and then uncomment 1 by 1
        RecursiveDraw(Width/2, Height/2, new Point(Location.X-Width/4, Location.Y-Height/4), ConsoleColor.Green); //Left Top
        RecursiveDraw(Width / 2, Height / 2, new Point(Location.X + 3* Width / 4, Location.Y + 3* Height / 4), ConsoleColor.Red); //Right Bottom
        RecursiveDraw(Width / 2, Height / 2, new Point(Location.X + 3* Width / 4, Location.Y - Height / 4), ConsoleColor.Blue); //Right Top
        RecursiveDraw(Width / 2, Height / 2, new Point(Location.X - Width / 4, Location.Y + 3* Height / 4), ConsoleColor.DarkMagenta); // Left Bottom
        
        //Draw(Width, Height, Location, BorderColor);

    }
    public static void Draw(int Width, int Height, Point Location, ConsoleColor BorderColor)
    {
        Console.ForegroundColor = BorderColor;

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

        s += "╗" + "\n";
        
        Console.CursorTop = Location.Y;
        Console.CursorLeft = Location.X;
        Console.Write(s);


        for (int i = 0; i < Height; i++) {
            Console.CursorTop = Location.Y + 1 + i;
            Console.CursorLeft = Location.X;
            Console.WriteLine("║");
            Console.CursorTop = Location.Y + 1 + i;
            Console.CursorLeft = Location.X + Width+1;
            Console.WriteLine("║");
        }
           

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

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

        
        Console.CursorTop = Location.Y+Height;
        Console.CursorLeft = Location.X;
        Console.Write(s);
        Console.ResetColor();
    }
}

public record Point(int X, int Y);

相关问题