mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-28 15:32:16 +00:00
16 lines
305 B
C#
16 lines
305 B
C#
namespace SimpleFileBrowser
|
|
{
|
|
public delegate void OnItemClickedHandler( ListItem item );
|
|
|
|
public interface IListViewAdapter
|
|
{
|
|
OnItemClickedHandler OnItemClicked { get; set; }
|
|
|
|
int Count { get; }
|
|
float ItemHeight { get; }
|
|
|
|
ListItem CreateItem();
|
|
|
|
void SetItemContent( ListItem item );
|
|
}
|
|
} |