But if you wanted to do that 'Progress bar with XOR' look it's not exactly
difficult to achieve in GDI+ despite the lack of XOR drawing:
Rectangle r = ClientRectangle;
r.Width = (r.Width * (percent)) / 100;
using (GraphicsPath gp = new GraphicsPath())
using (StringFormat sf = new
April 30, 2002 1:44 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [DOTNET] ProgressBar Question
>
>
> I don't think so.
>
> But writing a progress bar is one of the easiest controls you
> can create. Write a small control with Minimum, Maximum, and
> Value propert
l 30, 2002 10:43 AM
To: [EMAIL PROTECTED]
Subject: [DOTNET] ProgressBar Question
Is there any way to have text in a ProgressBar. i.e. Have a ProgressBar
that also contains the text "Operation x% Complete" ?
Thank you
You can read messages from the DOTNET archive, unsubscribe from DOT
You'd do this by building a UserControl which contains a ProgressBar and a
Label for the text.
Not built in, but pretty easy nonetheless.
G.
--
Graeme Foster ([EMAIL PROTECTED])
Principal Software Engineer
Aston Broadcast Systems Ltd. (http://www.aston.tv)
Disclaimer: I really don't have a clue w
Is there any way to have text in a ProgressBar. i.e. Have a ProgressBar that also
contains the text "Operation x% Complete" ?
Thank you
You can read messages from the DOTNET archive, unsubscribe from DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.