C# 中的图形面板

发布于 2024-11-06 17:54:30 字数 69 浏览 1 评论 0原文

我不想使用“背景”属性设置图像,而是想使用面板上的 Graphics 类绘制图像。我怎样才能在 C#.Net 中做到这一点?

Instead of setting image using 'background' property, I would like to draw the image using Graphics class on a panel. How can I do it in C#.Net?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枕梦 2024-11-13 17:54:30

你可以尝试下面的代码。

 public class ImagePanel:Panel
{
    private Image image;

    public Image Image
    {
        get { return image; }
        set
        {

            image = value;
            Refresh();
        }
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        if(Image!=null)
        {
            e.Graphics.DrawImage(this.Image,Point.Empty);
        }
        base.OnPaint(e);
    }
}

you can try following piece of code.

 public class ImagePanel:Panel
{
    private Image image;

    public Image Image
    {
        get { return image; }
        set
        {

            image = value;
            Refresh();
        }
    }

    protected override void OnPaint(PaintEventArgs e)
    {
        if(Image!=null)
        {
            e.Graphics.DrawImage(this.Image,Point.Empty);
        }
        base.OnPaint(e);
    }
}
不知所踪 2024-11-13 17:54:30

利用System.Drawing.Graphics类来绘制事物。

详细信息:http://msdn.microsoft.com/en-us /library/system.drawing.graphics.aspx 与绘图

示例相关:http:// www.techotopia.com/index.php/Drawing_Graphics_in_C_Sharp

Make use of System.Drawing.Graphics class to draw the things.

Details : http://msdn.microsoft.com/en-us/library/system.drawing.graphics.aspx related to drawing

example : http://www.techotopia.com/index.php/Drawing_Graphics_in_C_Sharp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文