How can I draw a loading circle(animated) on windows forms? Is it possible to make it big and transparent, so that underlying text on form is still visible.
Displaying a gif is not a kind of solu开发者_如何学JAVAtion i'm looking for.
Thx.
Yes - you can do this using Graphics.DrawEllipse (for one or multiple circles, depending on the exact UI effect you're trying to achieve), using a pen with a non-opaque alpha value.
精彩评论