зеркало из https://github.com/DeGsoft/maui-linux.git
17 строки
328 B
C#
17 строки
328 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public sealed class BindablePropertyKey
|
|
{
|
|
internal BindablePropertyKey(BindableProperty property)
|
|
{
|
|
if (property == null)
|
|
throw new ArgumentNullException("property");
|
|
|
|
BindableProperty = property;
|
|
}
|
|
|
|
public BindableProperty BindableProperty { get; private set; }
|
|
}
|
|
} |