在c#

时间:2015-07-01 01:04:56

标签: c# windows screen line draw

我正在尝试编写一个简单的应用程序,以一定的速度打印一条“移动”的行,这是我第一次使用c#和Windows创建一个应用程序,我找到了一个帮助我画线的教程到目前为止我明白了:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;


namespace ConsoleApplication1
{
    class Program
    {
        [DllImport("User32.dll")]
        static extern IntPtr GetDC(IntPtr hwnd);
        static void draw(Rectangle r, Brush b, IntPtr hwnd)
        {
            using(Graphics g = Graphics.FromHdc(hwnd))
            {

                g.FillRectangle(b, r);
            }
        }
        static void Main(string[] args)
        {
            int x = 0;
            while (true)
            {

                draw(new Rectangle(x, 0, 50, 1080), Brushes.PaleGoldenrod, GetDC(IntPtr.Zero));
                x++;
            }

        }
    }
}

问题在于我不知道如何擦除上一行,或者只是在绘制一条线后刷新屏幕。

欢迎任何帮助。

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试类似:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WinFormDrawGraphics
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            SetStyle(ControlStyles.ResizeRedraw, true);
        }
        protected override void OnPaint(PaintEventArgs e)
        {
            // initialization
            Graphics g = e.Graphics;

            // Create pen.
            Pen blackPen = new Pen(Color.Black, 3);

            // Create points that define line.
            Point point1 = new Point(100, 100);
            Point point2 = new Point(500, 100);

            // Draw line to screen.
            e.Graphics.DrawLine(blackPen, point1, point2);

            // add any other graphics drawing...
        }
    }
}

如果您调整窗口大小,或隐藏它并重新显示它,它将重绘该行。

注意:这适用于WinForms GUI应用程序,而不是您创建的控制台应用程序。