我有我的 UserСontrol,它继承了 TextBox。我的新 TextBox 透明,我想让 TextBox 的阴影底部。Сan你告诉如何使它工作?
例如在我的表格中:
private const int CS_DROPSHADOW = 0x00020000;
protected override CreateParams CreateParams
{
get
{
// add the drop shadow flag for automatically drawing
// a drop shadow around the form
CreateParams cp = base.CreateParams;
cp.ClassStyle |= CS_DROPSHADOW;
return cp;
}
}