示例#1
0
 public void EndProgress()
 {
     var progressState = new ProgressState();
     progressState.IsInProgress = false;
     progressState.Label = string.Empty;
     progressState.Value = 0u;
     progressState.Maximum = 0u;
     ProgressState.Value = progressState;
 }
示例#2
0
 public void ReportProgress(string label, uint value)
 {
     var progressState = new ProgressState();
     progressState.IsInProgress = true;
     progressState.Label = label;
     progressState.Value = value;
     progressState.Maximum = m_maximum;
     ProgressState.Value = progressState;
 }
示例#3
0
        public void EndProgress()
        {
            var progressState = new ProgressState();

            progressState.IsInProgress = false;
            progressState.Label        = string.Empty;
            progressState.Value        = 0u;
            progressState.Maximum      = 0u;
            ProgressState.Value        = progressState;
        }
示例#4
0
        public void ReportProgress(string label, uint value)
        {
            var progressState = new ProgressState();

            progressState.IsInProgress = true;
            progressState.Label        = label;
            progressState.Value        = value;
            progressState.Maximum      = m_maximum;
            ProgressState.Value        = progressState;
        }