Reputation: 17348
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:
Does anyone know how to do this?
Upvotes: 1
Views: 5555
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