I am trying to bind the Visible property of a MVVMCross Dialog Section.
var refillSection = new Section() {
new StringElement("Refill").Bind(this, "SelectedCommand OpenExternal")
}.Bind(this, "Visible IsExternal,Converter=Visibility");
root.Add(refillSection);
I have also tried binding the Visible of the Element directly, but does not work either.
var refillSection = new Section() {
new StringElement("Refill").Bind(this, "SelectedCommand OpenExternal;Visible IsExternal,Converter=Visibility")
};
root.Add(refillSection);
Am I doing something wrong? I have the Visibility plugin installed.