15 lines
386 B
C#
15 lines
386 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace TextSortWindow
|
|
{
|
|
public interface ISortWindow
|
|
{
|
|
string InputText { get; }
|
|
string SelectedStrategy { get; }
|
|
void DisplaySortedText(string sortedText);
|
|
void SetSortOptions(List<string> options);
|
|
void DisplayTime(double milliseconds);
|
|
event EventHandler SortButtonClicked;
|
|
}
|
|
}
|