Interface IProgressBarHelper
- Namespace
- SunamoInterfaces.Interfaces
- Assembly
- SunamoInterfaces.dll
Helper interface for progress bar operations. Must be in sunamo because it's needed here, but DispatcherObject is not available in sunamo.
public interface IProgressBarHelper
- Extension Methods
Methods
CreateInstance(object, double, object)
Creates a new instance of progress bar helper.
IProgressBarHelper CreateInstance(object progressBar, double overall, object uiDispatcher)
Parameters
progressBarobjectThe progress bar control (System.Windows.Controls.ProgressBar).
overalldoubleOverall progress value.
uiDispatcherobjectUI dispatcher object (DispatcherObject).
Returns
- IProgressBarHelper
New instance of progress bar helper.
Done()
Marks the progress as fully complete.
void Done()
DonePartially()
Marks the progress as partially complete.
void DonePartially()