Improve documents

This commit is contained in:
Jack251970 2025-01-05 00:13:32 +08:00
parent d0bab86377
commit f69dd0f155

View file

@ -6,7 +6,7 @@
public interface IProgressBoxEx
{
/// <summary>
/// Show progress box
/// Show progress box. It should be called from the main ui thread.
/// </summary>
/// <param name="progress">
/// Progress value. Should be between 0 and 100. When progress is 100, the progress box will be closed.
@ -14,7 +14,7 @@ public interface IProgressBoxEx
public void ReportProgress(double progress);
/// <summary>
/// Close progress box.
/// Close progress box. It should be called from the main ui thread.
/// </summary>
public void Close();
}