我试图只将值绑定到Int32括号之间,但是此代码实际上不起作用,想知道Xaml是否提供了一种方法来实现这一点。
from collections import defaultdict
# None is the default, but you can change this default value
d = defaultdict(lambda: None)
答案 0 :(得分:0)
据我所知,目前,我们不支持在Xamarin中绑定参数。
有关在XAML中传递参数的信息,请参阅以下文档。
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/passing-arguments
答案 1 :(得分:0)
您不能直接绑定到参数。
处理此问题的最佳方法是在InfoCorso用户控件中添加一些可绑定的属性,然后更新后面代码中的参数。
您似乎已经拥有Title的可绑定属性,但是如果您需要更多信息,请检查此链接
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/bindable-properties