Xamarin.Forms: привязка ко всему BindingConext в C# (не XAML) - PullRequest
0 голосов
/ 09 июля 2020

Синтаксис для привязки элемента ко всему BindingContext в XAML: {Binding .}.

Как мне сделать то же самое в C#?

1 Ответ

0 голосов
/ 09 июля 2020

Эквивалент C# эквивалентен {Binding .} - это опустить путь привязки, например .Bind(Button.CommandParameter)

Пример XAML

<Button Command="{Binding ButtonCommand}" CommandParameter ="{Binding .}"

Пример кода

using Xamarin.Forms.Markup;

// ...

new Button().Bind(Button.CommandProperty, "ButtonCommand").Bind(Button.CommandParameterProperty)
...