How to set a progress bar in a message box

I want to set the progress bar in the message box, how to set ... the style of the progress step property has the Marquee property ..... The message block code is below.

MessageBox.Show("Data process please wait .", "Data progress ", MessageBoxIcon.Information); 
+4
source share
1 answer

There is no way to do this with a MessageBox. You need to implement your own form, which will look like a MessageBox, but contains a progress bar and / or something else that you want to see there.

+13
source

Source: https://habr.com/ru/post/1285733/


All Articles