mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2024-11-27 17:00:53 +01:00
21 lines
510 B
C#
21 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SonicAudioLib
|
|
{
|
|
public class ProgressChangedEventArgs : EventArgs
|
|
{
|
|
public double Progress { get; private set; }
|
|
|
|
public ProgressChangedEventArgs(double progress)
|
|
{
|
|
Progress = Math.Round(progress, 2, MidpointRounding.AwayFromZero);
|
|
}
|
|
}
|
|
|
|
public delegate void ProgressChanged(object sender, ProgressChangedEventArgs e);
|
|
}
|