111,097
社区成员




Graphics graphics = this.CreateGraphics();
Rectangle rectangle = new Rectangle(new Point(e.X, e.Y),
new Size(this.Cursor.Size.Width * 2, this.Cursor.Size.Height * 2));
this.Cursor.Draw(graphics, rectangle);
这种绘制方式可以实现吗?
还没找到如何控制graphics和rectangle实现黑色半透明呢