Table of Contents

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

progressBar object

The progress bar control (System.Windows.Controls.ProgressBar).

overall double

Overall progress value.

uiDispatcher object

UI 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()