c# - Xamarin - Databinding in a ViewCell -
how controls in xamarin forms viewcell bound
for example, when add following databinding label, part of view of viewcell, binds bindingcontext of viewcell (i presume). how logic implemented? textproperty property of label query viewcell's datacontext?
lbl.setbinding(label.textproperty, new binding(path: "time", stringformat: "{0:dd mmm}"));
the answer can found here: https://blog.xamarin.com/introduction-to-data-binding/
while bindingcontext property of each target object can individually set, isn’t necessary. bindingcontext special property that’s inherited children. therefore, when bindingcontext on contentpage set detailsviewmodel, of children of contentpage have same bindingcontext, , can bind public properties of detailsviewmodel
Comments
Post a Comment