Podcast
Questions and Answers
A progress bar is a control that an application can use to indicate the ______ of a lengthy operation.
A progress bar is a control that an application can use to indicate the ______ of a lengthy operation.
progress
ProgressBar controls are used whenever an operation takes more than a ______ period of time.
ProgressBar controls are used whenever an operation takes more than a ______ period of time.
short
As the task proceeds, the ProgressBar fills in from the ______ to the right.
As the task proceeds, the ProgressBar fills in from the ______ to the right.
left
The ______ property obtains or sets the current level of progress.
The ______ property obtains or sets the current level of progress.
Signup and view all the answers
By default, Minimum and Maximum are set to 0 and ______.
By default, Minimum and Maximum are set to 0 and ______.
Signup and view all the answers
A __________ bar is a control that an application can use to indicate the progress of a lengthy operation.
A __________ bar is a control that an application can use to indicate the progress of a lengthy operation.
Signup and view all the answers
The Maximum and Minimum properties define the range of values to represent the progress of a __________.
The Maximum and Minimum properties define the range of values to represent the progress of a __________.
Signup and view all the answers
The Minimum property sets the lower value for the range of valid values for __________.
The Minimum property sets the lower value for the range of valid values for __________.
Signup and view all the answers
Example private void button1_Click(object sender, EventArgs e) sets the range of values for the ProgressBar to 0 and __________.
Example private void button1_Click(object sender, EventArgs e) sets the range of values for the ProgressBar to 0 and __________.
Signup and view all the answers
The ProgressBar fills in from the __________________ as the task proceeds.
The ProgressBar fills in from the __________________ as the task proceeds.
Signup and view all the answers