C# Builder中的图形绘制功能可以通过使用Graphics类来实现。Graphics类提供了一组方法来绘制各种形状和图像,包括直线、矩形、圆形、椭圆、多边形等。
以下是一个简单的示例,演示如何在C# Builder中绘制一个矩形:
using System;
using System.Drawing;
using System.Windows.Forms;
namespace GraphicsDemo
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
Pen pen = new Pen(Color.Black, 2);
Rectangle rect = new Rectangle(50, 50, 100, 100);
g.DrawRectangle(pen, rect);
}
}
}
在上面的示例中,我们在Form1的Paint事件处理方法中使用Graphics类的DrawRectangle方法来绘制一个矩形。我们首先创建一个Pen对象来指定绘制的颜色和线条宽度,然后创建一个Rectangle对象来指定矩形的位置和大小,最后调用DrawRectangle方法进行绘制。
除了绘制矩形,您还可以使用Graphics类的其他方法来绘制各种形状和图像。您可以查看MSDN文档以获取更多关于Graphics类的详细信息和用法示例。