How can I access the viewModel properties from the code behind?
sqrg opened this issue ยท 12 comments
I have this
Dialog.Instance.ShowAsync<GradientDialogView>(new { Content = "Sample alert text", OkText = "OK", GradientInitialColor = "#ED213A" });
And I would like to access the Content
, OkText
, and GradientInitialColor
in the code behind of the DialogView. Is there a way to do this?
The object you pass in to ShowAsync()
is set as the BindingContext
of the dialog view, so just using Binding
like normal.
It's not working for me (I can access the BindingContext
in the .xaml but for some reason I'm not able to do it from the code-behind)
I used the DialogView constructor as a work-around, like this
BindingContext isn't going to be set in the constructor. https://github.com/muak/AiForms.Dialogs/blob/master/AiForms.Dialogs.Android/DialogImplementation.cs#L27
Yes, I get it. But how can I access that BindingContext from the code behind?
What is the actual code you are having the problem with? Accessing the BindingContext property should just work.
@sqrg
First of all, the BindingContext can be get in OnBindingContextChanged override method.
The type of BindingContext is object type.
So you should cast to an appropriate type.
Because of using an anonymous class in your sample, you should use the defined class.
public class Some
{
public string Content {get;set;}
public string OkText {get;set;}
public string GradientInitialColor {get;set;}
}
Dialog.Instance.ShowAsync<GradientDialogView>(new Some { Content = "Sample alert text", OkText = "OK", GradientInitialColor = "#ED213A" });
protected override void OnBindingContextChanged()
{
base.OnBindingContextChanged();
if(BindingContext is Some some)
{
Content = some.Content;
... omit
}
}
However, It seems that data binding is usually used when like this pattern.
@nexussays
Thank you for your answer!
Thank you both for your answers! But I'm afraid it is not working for me. I'm sure I'm the one doing something wrong, but I can't figure it out.
Ohhhh I'm so stupid
Thanks