Hi
I have a custom page renderer where I programmatically generate controls and add them to a UIView. My question is how do i go about binding the native ListEntry(subclass of UITextField) class to a c# viewmodel?
I'm guessing its the methods below that I need for the binding but would really appreciate any direction to how i do this?
if (control.controlType == "Dropdown")
{
ListEntry entry = new ListEntry(control);
entry.BackgroundColor = UIColor.Blue;
//entry.SetBinding()
//entry.SetBindingContext()
imageView.AddSubview(entry);
}
}
Thanks