1
0
mirror of synced 2024-11-15 03:27:38 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Forms/Custom/PictureBoxCustom.cs

35 lines
917 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.ComponentModel;
namespace Toolbox.Library.Forms
{
public class PictureBoxCustom : PictureBox
{
public PictureBoxCustom()
{
this.BackgroundImage = GetCheckerBackground();
this.BackColor = Color.Transparent;
this.SizeMode = PictureBoxSizeMode.Zoom;
}
public Image GetCheckerBackground()
{
return Properties.Resources.CheckerBackground;
}
protected override void OnPaint(PaintEventArgs pe)
{
pe.Graphics.InterpolationMode = InterpolationMode.NearestNeighbor;
pe.Graphics.PixelOffsetMode = PixelOffsetMode.Half;
base.OnPaint(pe);
}
}
}