C# 클래스 ModernWPF.ViewModels.ProgressViewModel

A view-model for reporting progress. This is also suitable for databinding to TaskbarItemInfo in a wpf window.
상속: ViewModelBase
파일 보기 프로젝트 열기: soukoku/ModernWPF 1 사용 예제들

공개 메소드들

메소드 설명
ProgressViewModel ( ) : System

Initializes a new instance of the ProgressViewModel class.

UpdateState ( TaskbarItemProgressState state ) : void

Updates the progress state.

UpdateState ( TaskbarItemProgressState state, double progressPercent ) : void

Updates the progress state.

UpdateState ( TaskbarItemProgressState state, double progressPercent, string info ) : void

Updates the progress state.

UpdateState ( TaskbarItemProgressState state, double progressPercent, string info, StatusType infoType ) : void

Updates the progress state.

메소드 상세

ProgressViewModel() 공개 메소드

Initializes a new instance of the ProgressViewModel class.
public ProgressViewModel ( ) : System
리턴 System

UpdateState() 공개 메소드

Updates the progress state.
public UpdateState ( TaskbarItemProgressState state ) : void
state TaskbarItemProgressState The state.
리턴 void

UpdateState() 공개 메소드

Updates the progress state.
public UpdateState ( TaskbarItemProgressState state, double progressPercent ) : void
state TaskbarItemProgressState The state.
progressPercent double The progress percent (0 to 1).
리턴 void

UpdateState() 공개 메소드

Updates the progress state.
public UpdateState ( TaskbarItemProgressState state, double progressPercent, string info ) : void
state TaskbarItemProgressState The state.
progressPercent double The progress percent (0 to 1).
info string The extra information.
리턴 void

UpdateState() 공개 메소드

Updates the progress state.
public UpdateState ( TaskbarItemProgressState state, double progressPercent, string info, StatusType infoType ) : void
state TaskbarItemProgressState The state.
progressPercent double The progress percent (0 to 1).
info string The extra information.
infoType StatusType Type of the information.
리턴 void