зеркало из https://github.com/DeGsoft/maui-linux.git
12 строки
328 B
C#
12 строки
328 B
C#
namespace Xamarin.Forms
|
|
{
|
|
interface IPaddingElement
|
|
{
|
|
//note to implementor: implement this property publicly
|
|
Thickness Padding { get; }
|
|
|
|
//note to implementor: but implement this method explicitly
|
|
void OnPaddingPropertyChanged(Thickness oldValue, Thickness newValue);
|
|
Thickness PaddingDefaultValueCreator();
|
|
}
|
|
} |