如何从 VM 绑定到 .NET MAUI 中自定义控件的内部控件的属性

问题描述 投票:0回答:1
binding maui custom-controls
1个回答
0
投票

可绑定属性的绑定模式需要设置为 TwoWay 才能将更改传播到您的视图模型。

public static readonly BindableProperty IsCheckedProperty = BindableProperty.Create(
nameof(IsChecked), 
typeof(bool), 
typeof(PaperCheckBox), 
false,
BindingMode.TwoWay);

public static readonly BindableProperty TextProperty = BindableProperty.Create(
nameof(Text), 
typeof(string), 
typeof(PaperCheckBox), 
string.Empty,BindingMode.TwoWay);

© www.soinside.com 2019 - 2024. All rights reserved.