如何在没有表单的情况下在C#中绘制图形

时间:2011-10-26 00:08:17

标签: c# visual-studio visual-studio-2010 c#-4.0

我目前有一个控制台应用程序。如何在不需要表格的情况下将图形绘制到屏幕上。

3 个答案:

答案 0 :(得分:7)

编辑 - 根据CuddleBunny的评论,我创建了一个基本上“在屏幕上绘制图形”的类。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
namespace WindowsFormsApplication4
{
    class test : Form
    {
        public test() : base()
        {
            this.TopMost = true;
            this.DoubleBuffered = true;
            this.ShowInTaskbar = false;
            this.FormBorderStyle = FormBorderStyle.None;
            this.WindowState = FormWindowState.Maximized;
            this.BackColor = Color.Purple;
            this.TransparencyKey = Color.Purple;
        }
        protected override void OnPaint(PaintEventArgs e)
        {
            e.Graphics.DrawRectangle(Pens.Black, 0, 0, 200, 200);
            this.Invalidate(); //cause repaint
        }
        public static void Main(String[] args)
        {
            Application.Run(new test());
        }
    }
}

希望它有所帮助。

旧的错误答案


你可以获得另一个窗口的hwnd并绘制它。我不知道如何在整个屏幕上画画,我总是想知道自己。

一个简单的例子:

            Process p = Process.GetProcessById(0); //id of the process or some other method that can get the desired process
        using (Graphics g = Graphics.FromHwnd(p.MainWindowHandle))
        {
            g.DrawRectangle(Pens.Black, 0, 0, 100, 100);
        }

答案 1 :(得分:2)

你必须创建一种绘制图形的窗口。你不能直接画到屏幕上。

答案 2 :(得分:1)

如果您创建全屏直接绘制曲面,则可以使用directx在没有窗口的情况下在整个屏幕上绘图。屏幕全是你的(根本没有Windows桌面)。