зеркало из https://github.com/DeGsoft/maui-linux.git
76 строки
2.1 KiB
C#
76 строки
2.1 KiB
C#
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace Xamarin.Forms.Pages
|
|||
|
{
|
|||
|
public class DataPage : ContentPage, IDataSourceProvider
|
|||
|
{
|
|||
|
public static readonly BindableProperty DataProperty = BindableProperty.Create(nameof(Data), typeof(IEnumerable<IDataItem>), typeof(DataPage), default(IEnumerable<IDataItem>));
|
|||
|
|
|||
|
public static readonly BindableProperty DataSourceProperty = BindableProperty.Create(nameof(DataSource), typeof(IDataSource), typeof(DataPage), null, propertyChanged: OnDataSourceChanged);
|
|||
|
|
|||
|
public static readonly BindableProperty DefaultItemTemplateProperty = BindableProperty.Create(nameof(DefaultItemTemplate), typeof(DataTemplate), typeof(DataPage), default(DataTemplate));
|
|||
|
|
|||
|
readonly HashSet<string> _maskedKeys = new HashSet<string>();
|
|||
|
|
|||
|
public DataPage()
|
|||
|
{
|
|||
|
SetBinding(DataProperty, new Binding("DataSource.Data", source: this));
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<IDataItem> Data
|
|||
|
{
|
|||
|
get { return (IEnumerable<IDataItem>)GetValue(DataProperty); }
|
|||
|
set { SetValue(DataProperty, value); }
|
|||
|
}
|
|||
|
|
|||
|
public DataTemplate DefaultItemTemplate
|
|||
|
{
|
|||
|
get { return (DataTemplate)GetValue(DefaultItemTemplateProperty); }
|
|||
|
set { SetValue(DefaultItemTemplateProperty, value); }
|
|||
|
}
|
|||
|
|
|||
|
public IDataSource DataSource
|
|||
|
{
|
|||
|
get { return (IDataSource)GetValue(DataSourceProperty); }
|
|||
|
set { SetValue(DataSourceProperty, value); }
|
|||
|
}
|
|||
|
|
|||
|
void IDataSourceProvider.MaskKey(string key)
|
|||
|
{
|
|||
|
_maskedKeys.Add(key);
|
|||
|
IDataSource dataSource = DataSource;
|
|||
|
if (dataSource != null && !dataSource.MaskedKeys.Contains(key))
|
|||
|
{
|
|||
|
dataSource.MaskKey(key);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
void IDataSourceProvider.UnmaskKey(string key)
|
|||
|
{
|
|||
|
_maskedKeys.Remove(key);
|
|||
|
DataSource?.UnmaskKey(key);
|
|||
|
}
|
|||
|
|
|||
|
static void OnDataSourceChanged(BindableObject bindable, object oldValue, object newValue)
|
|||
|
{
|
|||
|
var dataView = (DataPage)bindable;
|
|||
|
var dataSource = (IDataSource)newValue;
|
|||
|
var oldSource = (IDataSource)oldValue;
|
|||
|
|
|||
|
if (oldSource != null)
|
|||
|
{
|
|||
|
foreach (string key in dataView._maskedKeys)
|
|||
|
oldSource.UnmaskKey(key);
|
|||
|
}
|
|||
|
|
|||
|
if (dataSource != null)
|
|||
|
{
|
|||
|
foreach (string key in dataView._maskedKeys)
|
|||
|
{
|
|||
|
dataSource.MaskKey(key);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|