16 lines
382 B
C#
16 lines
382 B
C#
using System.Drawing.Drawing2D;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesen.GUI.Controls
|
|
{
|
|
public class ctrlMesenPictureBox : PictureBox
|
|
{
|
|
public InterpolationMode InterpolationMode { get; set; }
|
|
|
|
protected override void OnPaint(PaintEventArgs paintEventArgs)
|
|
{
|
|
paintEventArgs.Graphics.InterpolationMode = InterpolationMode;
|
|
base.OnPaint(paintEventArgs);
|
|
}
|
|
}
|
|
}
|