本文主要是介绍使用System.Drawing进行几何图形绘制,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.概要
使用System.Drawing进行几何图形绘制
System.Drawing
是.NET框架中的一个命名空间,提供了基本的绘图功能,包括绘制几何图形(如矩形、椭圆、线条等)。- 它通常用于Windows Forms应用程序中的绘图。
- 你可以使用
Graphics
类来绘制几何图形。
2.代码
using System;
using System.Drawing;
using System.Windows.Forms;namespace GeometricShapesExample
{public class GeometricShapesForm : Form{public GeometricShapesForm(){this.Width = 800;this.Height = 600;this.Paint += new PaintEventHandler(Form_Paint);}private void Form_Paint(object sender, PaintEventArgs e){Graphics g = e.Graphics;g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;// 创建一个矩形Rectangle rect = new Rectangle(50, 50, 200, 100);// 填充矩形g.FillRectangle(Brushes.Blue, rect);// 绘制矩形边界g.DrawRectangle(Pens.Black, rect);}[STAThread]static void Main(){Application.EnableVisualStyles();Application.SetCompatibleTextRenderingDefault(false);Application.Run(new GeometricShapesForm());}}
}
3.运行结果
这篇关于使用System.Drawing进行几何图形绘制的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!