maui-linux/Xamarin.Forms.Core/IListViewController.cs

22 строки
623 B
C#
Исходник Обычный вид История

using System;
namespace Xamarin.Forms
2016-03-22 23:02:25 +03:00
{
public interface IListViewController : IViewController
2016-03-22 23:02:25 +03:00
{
event EventHandler<ScrollToRequestedEventArgs> ScrollToRequested;
2016-03-22 23:02:25 +03:00
ListViewCachingStrategy CachingStrategy { get; }
Element FooterElement { get; }
2016-03-22 23:02:25 +03:00
Element HeaderElement { get; }
bool RefreshAllowed { get; }
Cell CreateDefaultCell(object item);
string GetDisplayTextFromGroup(object cell);
void NotifyRowTapped(int index, int inGroupIndex, Cell cell);
void NotifyRowTapped(int index, Cell cell);
2016-03-22 23:02:25 +03:00
void SendCellAppearing(Cell cell);
void SendCellDisappearing(Cell cell);
void SendRefreshing();
}
}