23 lines
496 B
C#
23 lines
496 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace UserFission.重绘
|
|||
|
{
|
|||
|
class MyPictureBox : PictureBox
|
|||
|
{
|
|||
|
protected override CreateParams CreateParams
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
var parms = base.CreateParams;
|
|||
|
parms.Style &= ~0x02000000; // Turn off WS_CLIPCHILDREN
|
|||
|
return parms;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|