зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
320 B
C#
15 строки
320 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public static class TemplateExtensions
|
|
{
|
|
public static void SetBinding(this DataTemplate self, BindableProperty targetProperty, string path)
|
|
{
|
|
if (self == null)
|
|
throw new ArgumentNullException("self");
|
|
|
|
self.SetBinding(targetProperty, new Binding(path));
|
|
}
|
|
}
|
|
} |