マウスがコントロールの上に移動したときに、コントロールの外側の影を表示することは可能ですか? ウィンフォームで?
見た目は変えられるけど影?
public class MyButton : Button
{
protected override void OnPaint(PaintEventArgs pevent)
{
GraphicsPath path = new GraphicsPath();
path.AddEllipse(0, 0, ClientSize.Width, ClientSize.Height);
this.Region = new Region(path);
base.OnPaint(pevent);
}
}