10 lines
255 B
C#
10 lines
255 B
C#
namespace SharpUI.Source.Common.UI.Elements.DropDowns.Adapters
|
|
{
|
|
public class DefaultDropDownAdapter : DropDownAdapter<string>
|
|
{
|
|
public override string GetItemTextAt(int index)
|
|
{
|
|
return data[index];
|
|
}
|
|
}
|
|
} |