Oliver Spryn
Oliver Spryn

Reputation: 17348

WinForms ProgressBar - Remove Border and Background

I am trying to modify the appearance of a WinForms progress bar by flattening the appearance of the bar, and removing the background and border. I was able to flatten the bar using this example I found elseware: https://stackoverflow.com/a/5622633/663604. My code look almost exactly like the answer I just linked to.

However, I cannot seem to find a way to visually remove the background and border of the progress bar:

enter image description here

Does anyone know how to do this?

Upvotes: 1

Views: 5555

Answers (1)

fishmong3r
fishmong3r

Reputation: 1434

There is no way to remove the border for sure. You will have to create your own custom progress bar. You can find a good help here: http://support.microsoft.com/kb/323116

Upvotes: 3

Related Questions