.NET ImageList到PictureBox绘制图像锯齿状

时间:2014-04-22 17:41:30

标签: .net image graphics picturebox

我正在尝试根据需要将图像从图像列表绘制到图片框,而不是在OnPaint事件中。

我正在使用

 Me.picUserImage.Image = Me.ILUserIcons.Images(sGUID)

这很好用,但图像看起来很锯齿。

通常(当我使用OnPaint时)我使用以下代码:

    e.Graphics.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
    e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
    e.Graphics.DrawImage(Me.ilUsers.Images(iImageIndex), nRect)

这很好用。但是我无法在我的按需子菜单中设置此平滑模式。

有人能告诉我我做错了吗?

0 个答案:

没有答案