You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
I recently tried using the ProgressDialog and found out it only accepts values from 0.0 to 1.0.
The progressbar should show more precise values. Would it be possible to change the min/max values? or instead add Maximum and Minimum properties?
The text was updated successfully, but these errors were encountered:
It would be easy to implement such a behaviour @Jyrka98 requested. Just add following lines to ProgressDialogController
public double Minimum
{
get { return WrappedDialog.PART_ProgressBar.Minimum; }
set { WrappedDialog.PART_ProgressBar.Minimum = value; }
}
public double Maximum
{
get { return WrappedDialog.PART_ProgressBar.Maximum; }
set { WrappedDialog.PART_ProgressBar.Maximum = value; }
}
Hello.
I recently tried using the ProgressDialog and found out it only accepts values from 0.0 to 1.0.
The progressbar should show more precise values. Would it be possible to change the min/max values? or instead add Maximum and Minimum properties?
The text was updated successfully, but these errors were encountered: